From e5d143e8a76a1d90921b73f7e6f7238b31fd4164 Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Thu, 20 Jan 2022 18:10:36 +0530 Subject: [PATCH 1/9] WIP: adapt to volto-datablocks v3 --- .../manage/Blocks/NavigationBlock/Edit.jsx | 4 +- src/helpers/index.js | 69 ------------------- src/index.js | 6 +- 3 files changed, 3 insertions(+), 76 deletions(-) diff --git a/src/components/manage/Blocks/NavigationBlock/Edit.jsx b/src/components/manage/Blocks/NavigationBlock/Edit.jsx index c3c69c2..3e8b260 100644 --- a/src/components/manage/Blocks/NavigationBlock/Edit.jsx +++ b/src/components/manage/Blocks/NavigationBlock/Edit.jsx @@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react'; import { connect } from 'react-redux'; import { compose } from 'redux'; import _uniqueId from 'lodash/uniqueId'; -import RenderFields from '@eeacms/volto-datablocks/Utils/RenderFields'; +//import RenderFields from '@eeacms/volto-datablocks/Utils/RenderFields'; import View from './View'; import config from '@plone/volto/registry'; @@ -75,7 +75,7 @@ const Edit = (props) => { position: 'relative', }} > - + {/* */}
{ - return typeof obj === 'object' && obj !== null && Object.keys(obj).length > 0; -}; - -export const getSchemaWithDataQuery = (props) => { - if (!props.schema) return {}; - let schemaWithDataQuery = {}; - Object.keys(props.schema).forEach((element) => { - if (props.schema[element].type === 'data-provider') { - if ( - !objectHasData( - props?.connected_data_parameters?.byProviderPath?.[props.path], - ) && - !objectHasData( - props?.connected_data_parameters?.byContextPath?.[props.path], - ) - ) { - const dataQuery = {}; - dataQuery[element + '_data_query'] = { - defaultformat: 'compactnumber', - type: 'data-query', - }; - schemaWithDataQuery[element] = props.schema[element]; - schemaWithDataQuery = { ...schemaWithDataQuery, ...dataQuery }; - } - } - schemaWithDataQuery[element] = props.schema[element]; - }); - return schemaWithDataQuery; -}; - export function getLocation(href) { var match = href.match( /^(https?:)\/\/(([^:/?#]*)(?::([0-9]+))?)([/]{0,1}[^?#]*)(\?[^#]*|)(#.*|)$/, @@ -65,40 +33,3 @@ export function samePath(url, path) { const cleanPath = path.replace(/\/$/, ''); return clean === cleanPath; } - -export const updateConnectedDataParameters = (props) => { - props.schema && - Object.keys(props.schema).forEach((element) => { - if (props.schema[element].type === 'data-query') { - if ( - props?.newData?.columns?.[element] && - (props?.newData?.columns?.[element]?.value?.i !== - props?.data?.columns?.[element]?.value?.i || - props?.newData?.columns?.[element]?.value?.v !== - props?.data?.columns?.[element]?.value?.v) - ) { - const path = getBasePath(props.pathname); - const byPath = props?.connected_data_parameters?.byPath; - const connected_data_parameters = - (byPath?.[path]?.override?.length > 0 && - byPath?.[path]?.override?.[`${props.id}_${element}`]) || - null; - if ( - connected_data_parameters === null || - connected_data_parameters?.i !== - props?.newData?.columns?.[element]?.value?.i || - connected_data_parameters?.v?.join(',') !== - props?.newData?.columns?.[element]?.value?.v - ) { - props.dispatch( - setConnectedDataParameters( - path.replace('/edit', ''), - props?.newData?.columns?.[element]?.value, - `${props.id}_${element}`, - ), - ); - } - } - } - }); -}; diff --git a/src/index.js b/src/index.js index b5b04c4..076f442 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,6 @@ import Forbidden from '@plone/volto/components/theme/Forbidden/Forbidden'; import Unauthorized from '@plone/volto/components/theme/Unauthorized/Unauthorized'; -import { installBlocks } from '@eeacms/volto-plotlycharts'; import { applyConfig as installFiseFrontend } from './localconfig'; import ObjectListInlineWidget from './components/manage/Widgets/ObjectListInlineWidget'; @@ -11,10 +10,7 @@ import './slate-styles.css'; export default function applyConfig(config) { // Add here your project's configuration here by modifying `config` accordingly - config = [installBlocks, installFiseFrontend].reduce( - (acc, apply) => apply(acc), - config, - ); + config = [installFiseFrontend].reduce((acc, apply) => apply(acc), config); config.settings = { ...config.settings, From 26d2e5ee9cef90533338359e35bc6df1ada7f7eb Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Fri, 21 Jan 2022 13:30:32 +0200 Subject: [PATCH 2/9] Updated style --- theme/site/globals/site.overrides | 317 +++++++++++++++--------------- 1 file changed, 161 insertions(+), 156 deletions(-) diff --git a/theme/site/globals/site.overrides b/theme/site/globals/site.overrides index dd1c3e0..a6e4a5e 100644 --- a/theme/site/globals/site.overrides +++ b/theme/site/globals/site.overrides @@ -1543,236 +1543,241 @@ span.float-right { } // Europe forest specific blocks -.block-container, -.columns-view { - h5 { - color: @darkBrown; - font-weight: bold; - text-transform: uppercase; - } - - div { - &.flex { - display: flex; - } - - &.flex-column { - flex-direction: column; - } - - &.h-100 { - height: 100%; - } +h5 { + color: @darkBrown; + font-weight: bold; + text-transform: uppercase; +} - &.w-100 { - width: 100%; - } +div { + &.flex { + display: flex; + } - &.pa-1 { - padding: 10px; - } + &.flex-column { + flex-direction: column; } - .forest-block-wrapper { - display: flex; + &.h-100 { height: 100%; - padding: 10px; } - .forest-specific-block { - display: flex; + &.w-100 { width: 100%; - flex-direction: column; } - .land-data-wrapper, - .data-wrapper { - display: flex; - align-items: center; - padding: 1em; - margin-bottom: 1em; - border-radius: 5px; + &.pa-1 { + padding: 10px; } +} - .land-data, - .data { - padding-right: 10px; +.forest-block-wrapper { + display: flex; + height: 100%; + padding: 10px; +} - span { - font-size: 50px; - font-weight: 700; - line-height: 46px; - } - } +.forest-specific-block { + display: flex; + width: 100%; + flex-direction: column; +} - .land-data-content, - .data-content { - font-size: 14px; - font-weight: 300; +.land-data-wrapper, +.data-wrapper { + display: flex; + align-items: center; + padding: 1em; + margin-bottom: 1em; + border-radius: 5px; + .formatted-value { span { - display: block; - font-size: 18px; - font-weight: 500; + color: #000 !important; + font-size: 13px; + font-weight: normal; } + } +} - .data-entity { - display: inline; - } +.land-data, +.data { + padding-right: 10px; + + span { + font-size: 50px; + font-weight: 700; + line-height: 46px; } +} - .data-wrapper { - &.brown { - background-color: @tileBackgroundColor; +.land-data-content, +.data-content { + font-size: 14px; + font-weight: 300; - span { - color: @darkBrown; - } - } + span { + display: block; + font-size: 18px; + font-weight: 500; + } - &.green { - background-color: @tileBackgroundColor; - color: @darkGreen; + .data-entity { + display: inline; + } +} - .data-content { - color: initial; +.data-wrapper { + &.brown { + background-color: @tileBackgroundColor; - span { - color: @darkGreen; - } - } + span { + color: @darkBrown; } + } - &.blue { - background-color: @tileBackgroundColor; - color: @darkBlue; + &.green { + background-color: @tileBackgroundColor; + color: @darkGreen; - .data-content { - color: initial; + .data-content { + color: initial; - span { - color: @darkBlue; - } + span { + color: @darkGreen; } } + } - &.purple { - background-color: @tileBackgroundColor; - color: @purple; + &.blue { + background-color: @tileBackgroundColor; + color: @darkBlue; - .data-content { - color: initial; + .data-content { + color: initial; - span { - color: @purple; - } + span { + color: @darkBlue; } } } - .ui.list .item span { - float: right; - } + &.purple { + background-color: @tileBackgroundColor; + color: @purple; - .ui.bulleted.list > .item { - padding: 7px 0; - font-size: 14px; + .data-content { + color: initial; - a { - color: @textColor; - text-decoration: underline; + span { + color: @purple; + } } } +} - ul.ui.list li:before, - .ui.bulleted.list .list > .item:before, - .ui.bulleted.list > .item:before { - top: 10px; - width: 8px; - height: 8px; - background-color: @darkBrown; - border-radius: 50%; - content: ''; - } +.ui.list .item span { + float: right; +} - .forest-comparation { - .land-data-wrapper { - margin-bottom: 0; - background-color: @tileBackgroundColor; +.ui.bulleted.list > .item { + padding: 7px 0; + font-size: 14px; - span { - color: @darkBrown; - } - } + a { + color: @textColor; + text-decoration: underline; } +} - @tileBackgroundColor: #f6f6f5; - @darkBlue: #002d54; +ul.ui.list li:before, +.ui.bulleted.list .list > .item:before, +.ui.bulleted.list > .item:before { + top: 10px; + width: 8px; + height: 8px; + background-color: @darkBrown; + border-radius: 50%; + content: ''; +} - .forest-area-block { - .land-data-wrapper.eu28-data { - background-color: @tileBackgroundColor; - color: @darkGreen; +.forest-comparation { + .land-data-wrapper { + margin-bottom: 0; + background-color: @tileBackgroundColor; - .land-data-content { - color: initial; + span { + color: @darkBrown; + } + } +} - span { - color: @darkGreen; - } - } +@tileBackgroundColor: #f6f6f5; +@darkBlue: #002d54; - &.purple { - color: @purple; +.forest-area-block { + .land-data-wrapper.eu28-data { + background-color: @tileBackgroundColor; + color: @darkGreen; - .land-data-content { - color: initial; + .land-data-content { + color: initial; - span { - color: @purple; - } - } + span { + color: @darkGreen; } } - .land-data-wrapper.eea39-data { - background-color: @tileBackgroundColor; - color: @darkBlue; + &.purple { + color: @purple; .land-data-content { color: initial; span { - color: @darkBlue; + color: @purple; } } } + } - .coverage-data { - display: flex; - margin: 1em 0; - color: #fff; - font-size: 16px; + .land-data-wrapper.eea39-data { + background-color: @tileBackgroundColor; + color: @darkBlue; + + .land-data-content { + color: initial; span { - display: block; - margin-bottom: 0.2em; - font-size: 28px; + color: @darkBlue; } } } - .map-wrapper { - padding: 5px; - border: 1px solid @darkGreen; - border-radius: 5px; - } + .coverage-data { + display: flex; + margin: 1em 0; + color: #fff; + font-size: 16px; - .map-buttons { - margin-top: 2em; + span { + display: block; + margin-bottom: 0.2em; + font-size: 28px; + } } } +.map-wrapper { + padding: 5px; + border: 1px solid @darkGreen; + border-radius: 5px; +} + +.map-buttons { + margin-top: 2em; +} + .forest-patch-size-distribution { .square { display: inline-block; From e96c48ed5995b075a2b8a7c0834befd6608763db Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Wed, 2 Feb 2022 15:42:55 +0530 Subject: [PATCH 3/9] rafactor navigation block --- .../manage/Blocks/NavigationBlock/Edit.jsx | 103 ++------- .../manage/Blocks/NavigationBlock/schema.js | 56 +++++ .../manage/Widgets/ObjectListWidget.jsx | 200 ------------------ 3 files changed, 77 insertions(+), 282 deletions(-) create mode 100644 src/components/manage/Blocks/NavigationBlock/schema.js delete mode 100644 src/customizations/volto/components/manage/Widgets/ObjectListWidget.jsx diff --git a/src/components/manage/Blocks/NavigationBlock/Edit.jsx b/src/components/manage/Blocks/NavigationBlock/Edit.jsx index 3e8b260..8409b01 100644 --- a/src/components/manage/Blocks/NavigationBlock/Edit.jsx +++ b/src/components/manage/Blocks/NavigationBlock/Edit.jsx @@ -1,92 +1,31 @@ -import React, { useState, useEffect } from 'react'; +import React from 'react'; import { connect } from 'react-redux'; import { compose } from 'redux'; -import _uniqueId from 'lodash/uniqueId'; -//import RenderFields from '@eeacms/volto-datablocks/Utils/RenderFields'; +import { SidebarPortal } from '@plone/volto/components'; +import InlineForm from '@plone/volto/components/manage/Form/InlineForm'; + import View from './View'; -import config from '@plone/volto/registry'; -const getSchema = (props) => { - return { - parent: { - title: 'Parent page', - widget: 'object_by_path', - }, - className: { - title: 'Classname', - type: 'text', - }, - fixedTabs: { - title: 'Fixed navigation', - type: 'boolean', - }, - navFromParent: { - title: 'Show navigation from parent', - type: 'boolean', - }, - pages: { - title: 'Specific pages', - type: 'schema', - fieldSetTitle: 'specific pages', - fieldSetId: 'specific-pages', - fieldSetSchema: { - fieldsets: [ - { - id: 'default', - title: 'Default', - fields: ['title', 'url'], - }, - ], - properties: { - title: { - title: 'Title', - type: 'text', - }, - url: { - title: 'Url', - widget: 'text', - }, - }, - required: ['title', 'url'], - }, - editFieldset: false, - deleteFieldset: false, - }, - }; -}; +import schema from './schema'; const Edit = (props) => { - const [state, setState] = useState({ - schema: getSchema({ ...props, providerUrl: config.settings.providerUrl }), - id: _uniqueId('block_'), - }); - useEffect(() => { - setState({ - ...state, - schema: getSchema({ - ...props, - }), - }); - /* eslint-disable-next-line */ - }, [state.item, props.data.components]); return ( -
- {/* */} - -
-
+ <> + + + { + props.onChangeBlock(props.block, { + ...props.data, + [id]: value, + }); + }} + formData={props.data} + /> + + ); }; diff --git a/src/components/manage/Blocks/NavigationBlock/schema.js b/src/components/manage/Blocks/NavigationBlock/schema.js new file mode 100644 index 0000000..01e6677 --- /dev/null +++ b/src/components/manage/Blocks/NavigationBlock/schema.js @@ -0,0 +1,56 @@ +const pagesSchema = { + title: 'Specific pages', + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['title', 'url'], + }, + ], + properties: { + title: { + title: 'Title', + type: 'text', + }, + url: { + title: 'Url', + widget: 'text', + }, + }, + required: ['title', 'url'], +}; + +export default { + title: 'Navigation block', + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['navFromParent', 'className', 'fixedTabs', 'parent', 'pages'], + }, + ], + properties: { + parent: { + title: 'Parent page', + widget: 'object_by_path', + }, + className: { + title: 'Classname', + type: 'text', + }, + fixedTabs: { + title: 'Fixed navigation', + type: 'boolean', + }, + navFromParent: { + title: 'Show navigation from parent', + type: 'boolean', + }, + pages: { + title: 'Pages', + schema: pagesSchema, + type: 'schema', + }, + }, + required: [], +}; diff --git a/src/customizations/volto/components/manage/Widgets/ObjectListWidget.jsx b/src/customizations/volto/components/manage/Widgets/ObjectListWidget.jsx deleted file mode 100644 index 1cc7db4..0000000 --- a/src/customizations/volto/components/manage/Widgets/ObjectListWidget.jsx +++ /dev/null @@ -1,200 +0,0 @@ -import React from 'react'; -import { defineMessages, useIntl } from 'react-intl'; -import { Accordion, Button, Segment } from 'semantic-ui-react'; -import { DragDropList, FormFieldWrapper, Icon } from '@plone/volto/components'; -import ObjectWidget from '@plone/volto/components/manage/Widgets/ObjectWidget'; - -import upSVG from '@plone/volto/icons/up-key.svg'; -import downSVG from '@plone/volto/icons/down-key.svg'; -import deleteSVG from '@plone/volto/icons/delete.svg'; -import addSVG from '@plone/volto/icons/add.svg'; -import dragSVG from '@plone/volto/icons/drag.svg'; -import { v4 as uuid } from 'uuid'; - -const messages = defineMessages({ - labelRemoveItem: { - id: 'Remove item', - defaultMessage: 'Remove item', - }, - labelCollapseItem: { - id: 'Collapse item', - defaultMessage: 'Collapse item', - }, - labelShowItem: { - id: 'Show item', - defaultMessage: 'Show item', - }, - emptyObjectList: { - id: 'Empty object list', - defaultMessage: 'Empty object list', - }, -}); - -const ObjectListWidget = (props) => { - const { - block, - fieldSet, - id, - schema, - value = [], - onChange, - schemaExtender, - } = props; - const [activeColumn, setActiveColumn] = React.useState(value.length - 1); - const intl = useIntl(); - - function handleChangeColumn(e, blockProps) { - const { index } = blockProps; - const newIndex = activeColumn === index ? -1 : index; - - setActiveColumn(newIndex); - } - const objectSchema = typeof schema === 'function' ? schema(props) : schema; - - const topLayerShadow = '0 1px 1px rgba(0,0,0,0.15)'; - const secondLayer = ', 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0,0,0,0.15)'; - const thirdLayer = ', 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0,0,0,0.15)'; - - return ( -
- -
- -
- {value.length === 0 && ( - - )} -
- 1 ? secondLayer : ''}${ - value.length > 2 ? thirdLayer : '' - }`, - }} - forwardedAriaLabelledBy={`fieldset-${ - fieldSet || 'default' - }-field-label-${id}`} - childList={value.map((o, index) => [o['@id'] || index + 1, o])} - onMoveItem={(result) => { - const { source, destination } = result; - if (!destination) { - return; - } - - const first = value[source.index]; - const second = value[destination.index]; - value[destination.index] = first; - value[source.index] = second; - - onChange(id, value); - return true; - }} - > - {({ child, childId, index, draginfo }) => { - return ( -
- - - - -
- {`${objectSchema.title} #${index + 1}`} -
-
- - {activeColumn === index ? ( - - ) : ( - - )} -
-
- - - { - const newvalue = value.map((v, i) => - i !== index ? v : fv, - ); - onChange(id, newvalue); - }} - /> - - -
-
- ); - }} -
-
- ); -}; -export default ObjectListWidget; From 874c0d7077b9e36fccf765547e550679c4bfb5bb Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Wed, 2 Feb 2022 15:54:05 +0530 Subject: [PATCH 4/9] object list widget --- src/components/manage/Blocks/NavigationBlock/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/manage/Blocks/NavigationBlock/schema.js b/src/components/manage/Blocks/NavigationBlock/schema.js index 01e6677..e15dd38 100644 --- a/src/components/manage/Blocks/NavigationBlock/schema.js +++ b/src/components/manage/Blocks/NavigationBlock/schema.js @@ -49,7 +49,7 @@ export default { pages: { title: 'Pages', schema: pagesSchema, - type: 'schema', + widget: 'object_list', }, }, required: [], From ee0891addb9e7c78283b2d9b03a36224ac6904b6 Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Wed, 2 Feb 2022 17:43:42 +0530 Subject: [PATCH 5/9] fix navigationBlock View --- .../manage/Blocks/NavigationBlock/View.jsx | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/components/manage/Blocks/NavigationBlock/View.jsx b/src/components/manage/Blocks/NavigationBlock/View.jsx index 511f994..c8f482a 100644 --- a/src/components/manage/Blocks/NavigationBlock/View.jsx +++ b/src/components/manage/Blocks/NavigationBlock/View.jsx @@ -28,14 +28,12 @@ const View = ({ content, ...props }) => { const isLoggedIn = cookie.load('auth_token'); const parent = - data?.navFromParent?.value && props.properties?.parent + data?.navFromParent && props.properties?.parent ? getBasePath(props.properties?.parent?.['@id']) - : data.parent?.value; + : data.parent; const history = useHistory(); useEffect(() => { - const pagesProperties = data.pages?.value - ? data.pages?.value?.properties || {} - : {}; + const pagesProperties = data.pages ? data.pages?.properties || {} : {}; const newPages = Object.keys(pagesProperties).map((page) => pagesProperties[page]) || []; setPages(newPages); @@ -49,7 +47,7 @@ const View = ({ content, ...props }) => { setIsMobile(false); } // eslint-disable-next-line react-hooks/exhaustive-deps - }, [props.navigation, data.pages?.value]); + }, [props.navigation, data.pages]); const isFixed = props.fixedTabs; @@ -82,9 +80,7 @@ const View = ({ content, ...props }) => { props.navigation?.items?.length || pages.length } - className={ - props.data.className?.value ? props.data.className.value : '' - } + className={props.data.className || ''} > {isMobile ? ( @@ -235,13 +231,13 @@ export default compose( discodata_resources: state.discodata_resources, navItems: state.navigation?.items, flags: state.flags, - fixedTabs: props.data?.fixedTabs?.value, + fixedTabs: props.data?.fixedTabs, navigation: props.properties?.parent ? getNavigationByParent( state.navigation?.items, - props.data?.navFromParent?.value + props.data?.navFromParent ? getBasePath(props.properties?.parent?.['@id']) - : props.data?.parent?.value, + : props.data?.parent, ) : {}, }), From 7502a9ea2c57aacfdfabf86fbf80c752c856cb6a Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Thu, 3 Feb 2022 17:15:39 +0200 Subject: [PATCH 6/9] Added DiscodataConnectorBlock --- .../Blocks/DiscodataConnectorBlock/index.js | 24 ++ .../Blocks/DiscodataConnectorBlock/styles.css | 16 + .../DiscodataConnectorBlock/v1/Edit.jsx | 90 +++++ .../DiscodataConnectorBlock/v1/View.jsx | 180 ++++++++++ .../DiscodataConnectorBlock/v1/schema.js | 254 ++++++++++++++ .../DiscodataConnectorBlock/v2/Edit.jsx | 37 ++ .../DiscodataConnectorBlock/v2/View.jsx | 70 ++++ .../DiscodataConnectorBlock/v2/schema.js | 204 +++++++++++ src/index.js | 10 +- theme/site/globals/site.overrides | 329 +++++++++--------- 10 files changed, 1047 insertions(+), 167 deletions(-) create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/index.js create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/styles.css create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v1/Edit.jsx create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v1/schema.js create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v2/Edit.jsx create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v2/View.jsx create mode 100644 src/components/manage/Blocks/DiscodataConnectorBlock/v2/schema.js diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/index.js b/src/components/manage/Blocks/DiscodataConnectorBlock/index.js new file mode 100644 index 0000000..d775912 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/index.js @@ -0,0 +1,24 @@ +import worldSVG from '@plone/volto/icons/world.svg'; +import DiscodataConnectorBlockEdit from './v1/Edit'; +import DiscodataConnectorBlockView from './v1/View'; + +// TODO: Move this to volto-forests-theme + +export default (config) => { + config.blocks.blocksConfig.discodata_connector_block = { + id: 'discodata_connector_block', + title: 'Discodata connector block', + icon: worldSVG, + group: 'data_blocks', + view: DiscodataConnectorBlockView, + edit: DiscodataConnectorBlockEdit, + restricted: false, + mostUsed: false, + sidebarTab: 1, + security: { + addPermission: [], + view: [], + }, + }; + return config; +}; diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/styles.css b/src/components/manage/Blocks/DiscodataConnectorBlock/styles.css new file mode 100644 index 0000000..db5c8e9 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/styles.css @@ -0,0 +1,16 @@ +.connected-data-block { + background-color: lightblue; +} + +.block-container .data-content span { + white-space: break-spaces; +} + +#sidebar-properties .accordion .ui.menu { + flex-wrap: wrap; +} + +#sidebar-properties .accordion .ui.menu .active.item { + border: 1px solid #d4d4d5; + border-radius: 0.28rem !important; +} diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v1/Edit.jsx b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/Edit.jsx new file mode 100644 index 0000000..d0b04df --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/Edit.jsx @@ -0,0 +1,90 @@ +import React, { useState, useEffect } from 'react'; +import { compose } from 'redux'; +import _uniqueId from 'lodash/uniqueId'; +import { v4 as uuid } from 'uuid'; +import View from './View'; +import { SidebarPortal } from '@plone/volto/components'; +import InlineForm from '@plone/volto/components/manage/Form/InlineForm'; +import { connectToMultipleProviders } from '@eeacms/volto-datablocks/hocs'; + +import { getSchema } from './schema'; + +import '../styles.css'; + +const Edit = (props) => { + const [state, setState] = useState({ + id: _uniqueId('block_'), + schema: getSchema(props), + }); + + useEffect(() => { + const newData = { ...props.data }; + if (props.data.data_providers) { + if ( + typeof props.data?.data_providers === 'object' && + props.data?.data_providers?.value + ) { + try { + newData.data_providers = []; + const dataProvidersSchema = JSON.parse( + props.data?.data_providers?.value, + ); + dataProvidersSchema?.fieldsets?.[0]?.fields && + dataProvidersSchema.fieldsets[0].fields.forEach((dataProvider) => { + newData.data_providers.push({ + ...dataProvidersSchema.properties[dataProvider], + '@id': uuid(), + id: dataProvider, + }); + }); + } catch {} + } + } + if (JSON.stringify(newData) !== JSON.stringify(props.data)) { + props.onChangeBlock(props.block, { + ...newData, + }); + } + /* eslint-disable-next-line */ + }, []); + + useEffect(() => { + setState({ + ...state, + schema: getSchema(props), + }); + /* eslint-disable-next-line */ + }, [props.providers_data, props.data.data_providers_new]); + + return ( +
+ + { + props.onChangeBlock(props.block, { + ...(props.data || {}), + [field]: data, + }); + }} + formData={props.data || {}} + block={props.block} + /> + + +
+ ); +}; + +export default compose( + connectToMultipleProviders((props) => ({ + providers: + props.data?.data_providers + ?.map((provider) => ({ + provider_url: provider.path, + title: provider.title, + })) + ?.filter((provider) => provider.provider_url) || [], + })), +)(Edit); diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx new file mode 100644 index 0000000..bb82ae5 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx @@ -0,0 +1,180 @@ +import React, { useState, useEffect } from 'react'; +import { compose } from 'redux'; +import { connectToMultipleProviders } from '@eeacms/volto-datablocks/hocs'; +import { DataConnectedValue } from '@eeacms/volto-datablocks/Utils'; +import { Sources } from '@eeacms/volto-datablocks/Utils'; + +const providerView = (dataProviderKey, dataProvider) => { + return ( +
+ + {dataProvider.hasDiscodataConnector && ( + + )} + {dataProvider.measurmentUnit || ''} + + {' ' + (dataProvider.additionalText || '')} +
+ ); +}; + +const bulletListView = (items) => ( +
+ {items && + Object.entries(items).map(([key, item]) => ( +
+ {item.leftText} + {item.rightText} +
+ ))} +
+); + +const View = (props) => { + const [dataProviders, setDataProviders] = useState({}); + const [parentsDataProviders, setParentsDataProviders] = useState({}); + const { providers_data, providers_metadata } = props; + const bulletList = + props.data?.bullet_list?.value && + JSON.parse(props.data?.bullet_list?.value).properties; + + const updateDataProviders = () => { + let newDataProviders = { ...dataProviders }; + if (props.data.data_providers) { + if ( + typeof props.data.data_providers === 'object' && + props.data.data_providers.value + ) { + newDataProviders = {}; + const dataProvidersSchema = + props.data?.data_providers?.value && + JSON.parse(props.data?.data_providers?.value); + dataProvidersSchema?.fieldsets?.[0]?.fields && + dataProvidersSchema.fieldsets[0].fields.forEach((dataProvider) => { + newDataProviders[dataProvider] = { + ...dataProvidersSchema.properties[dataProvider], + }; + }); + } else if (Array.isArray(props.data.data_providers)) { + newDataProviders = {}; + props.data.data_providers.forEach((provider) => { + newDataProviders[provider.id] = { ...provider }; + }); + } + } + setDataProviders({ ...newDataProviders }); + return newDataProviders; + }; + + const updateParentsDataProviders = () => { + const newParentsDataProviders = {}; + dataProviders && + Object.entries(dataProviders).forEach( + ([dataProviderKey, dataProvider]) => { + if (!dataProvider.hasParent) { + newParentsDataProviders[dataProviderKey] = { ...dataProvider }; + } else if ( + dataProvider.parent && + newParentsDataProviders[dataProvider.parent] + ) { + if (!newParentsDataProviders[dataProvider.parent].children) { + newParentsDataProviders[dataProvider.parent].children = {}; + } + newParentsDataProviders[dataProvider.parent].children[ + dataProviderKey + ] = dataProvider; + } + }, + ); + setParentsDataProviders({ ...newParentsDataProviders }); + return newParentsDataProviders; + }; + + useEffect(() => { + updateDataProviders(); + /* eslint-disable-next-line */ + }, [JSON.stringify(props.data?.data_providers)]); + + useEffect(() => { + updateParentsDataProviders(); + /* eslint-disable-next-line */ + }, [JSON.stringify(dataProviders)]); + + const view = ( +
+
+ {/* {props.data?.block_title ?
{props.data.block_title}
: ''} */} + {parentsDataProviders && + Object.entries(parentsDataProviders).map( + ([dataProviderKey, dataProvider]) => { + if (dataProvider.children) { + return ( +
+ {providerView(dataProviderKey, dataProvider)} + {Object.entries( + dataProvider.children, + ).map(([cildrenKey, children]) => + providerView(cildrenKey, children), + )} +
+ ); + } + return ( +
+ {providerView(dataProviderKey, dataProvider)} +
+ ); + }, + )} + {bulletList && bulletListView(bulletList)} + {props?.data?.chartSources && ( +
+ provider.path) + ?.filter((path) => path)?.[0] + } + /> +
+ )} +
+
+ ); + return view; +}; + +export default compose( + connectToMultipleProviders((props) => ({ + providers: + props.data?.data_providers + ?.map((provider) => ({ + provider_url: provider.path, + title: provider.title, + has_data_query_by_context: provider.has_data_query_by_context, + has_data_query_by_provider: provider.has_data_query_by_provider, + data_query: provider.data_query, + })) + ?.filter((provider) => provider.provider_url) || [], + })), +)(View); diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v1/schema.js b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/schema.js new file mode 100644 index 0000000..cb983b2 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/schema.js @@ -0,0 +1,254 @@ +import React from 'react'; + +const makeChoices = (keys) => keys && keys.map((k) => [k, k]); + +const getDataProvidersIds = (data_providers = [], child = {}) => { + const ids = data_providers + .map((data_provider) => data_provider.id) + .filter((id) => id && id !== child.id); + return makeChoices(ids); +}; + +const dataProviderSchemaExtender = (schema, child = {}, props) => { + const data_providers = props.data.data_providers || []; + return { + ...schema, + fieldsets: [ + { + ...schema.fieldsets[0], + }, + { + id: 'properties', + title: 'Properties', + fields: ['measurmentUnit', 'additionalText', 'className'], + }, + ...(child.hasDiscodataConnector + ? [ + { + id: 'Discodata connector', + title: 'Discodata connector', + fields: [ + 'path', + 'displayColumn', + 'textTemplate', + 'specifier', + 'data_query', + ], + }, + ] + : []), + ...(child.hasParent + ? [ + { + id: 'parent', + title: 'Parent', + fields: ['parent'], + }, + ] + : []), + ], + properties: { + ...schema.properties, + displayColumn: { + ...schema.properties.displayColumn, + choices: makeChoices( + Object.keys(props.providers_data?.[child.title] || {}), + ), + }, + parent: { + ...schema.properties.parent, + choices: getDataProvidersIds(data_providers, child), + }, + }, + }; +}; + +const dataProviderSchema = { + title: 'Data provider', + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: [ + 'title', + 'id', + 'hasDiscodataConnector', + 'hasParent', + 'wrapperClassName', + ], + }, + { + id: 'advanced', + title: 'Advanced', + fields: [ + 'path', + 'displayColumn', + 'textTemplate', + 'specifier', + 'measurmentUnit', + 'additionalText', + 'className', + 'parent', + 'wrapperClassName', + ], + }, + ], + properties: { + title: { + type: 'text', + title: 'Title', + }, + id: { + type: 'text', + title: 'Id', + }, + hasDiscodataConnector: { + type: 'boolean', + title: 'Has discodata connector', + }, + hasParent: { + type: 'boolean', + title: 'Has parent', + }, + path: { + widget: 'object_by_path', + title: 'Discodata connector', + }, + displayColumn: { + type: 'select', + title: 'Display column', + choices: [], + }, + textTemplate: { + title: 'Text template', + widget: 'textarea', + description: 'Add suffix/prefix to text. Use {} for value placeholder', + }, + specifier: { + title: 'Format', + description: ( + <> + See{' '} + + D3 format documentation + + + ), + }, + measurmentUnit: { + type: 'text', + title: 'Measurment unit', + }, + additionalText: { + type: 'text', + title: 'Additional text', + }, + + className: { + type: 'select', + title: 'Class name', + choices: [ + ['data', 'Data'], + ['data-content', 'Data content'], + ], + }, + parent: { + type: 'select', + title: 'Parent', + choices: [], + }, + wrapperClassName: { + type: 'select', + title: 'Wrapper class name', + choices: [ + ['data-wrapper brown', 'Brown wrapper'], + ['data-wrapper green', 'Green wrapper'], + ['data-wrapper blue', 'Blue wrapper'], + ['data-wrapper purple', 'Purple wrapper'], + ], + }, + data_query: { + title: 'Data query', + widget: 'data_query', + }, + }, + required: ['title', 'id'], +}; + +const SourceSchema = { + title: 'Source', + + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['chart_source', 'chart_source_link'], + }, + ], + + properties: { + chart_source: { + type: 'string', + title: 'Source', + }, + chart_source_link: { + type: 'string', + title: 'Link', + }, + }, + + required: ['source'], +}; + +export const getSchema = (props) => ({ + title: 'Discodata connector block', + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['block_title'], + }, + { + id: 'advanced', + title: 'Advanced', + fields: ['data_providers'], + }, + { + id: 'sources', + title: 'Sources', + fields: ['chartSources', 'download_button'], + }, + ], + properties: { + block_title: { + title: 'Title', + widget: 'textarea', + }, + download_button: { + title: 'Download button', + type: 'boolean', + defaultValue: true, + }, + chartSources: { + widget: 'object_list', + title: 'Sources', + schema: SourceSchema, + }, + data_providers: { + title: 'Data providers', + widget: 'object_list', + schema: dataProviderSchema, + schemaExtender: (schema, child) => + dataProviderSchemaExtender(schema, child, props), + defaultData: { + hasDiscodataConnector: true, + hasParent: false, + }, + }, + }, + required: [], +}); diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v2/Edit.jsx b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/Edit.jsx new file mode 100644 index 0000000..70a1926 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/Edit.jsx @@ -0,0 +1,37 @@ +import React from 'react'; +import { compose } from 'redux'; +import { SidebarPortal } from '@plone/volto/components'; +import InlineForm from '@plone/volto/components/manage/Form/InlineForm'; +import { connectToMultipleProviders } from '@eeacms/volto-datablocks/hocs'; +import getSchema from './schema'; +import View from './View'; + +const Edit = (props) => { + const schema = React.useMemo(() => getSchema(props), [props]); + + return ( + <> + + + + { + props.onChangeBlock(props.block, { + ...props.data, + [id]: value, + }); + }} + formData={props.data} + /> + + + ); +}; + +export default compose( + connectToMultipleProviders((props) => ({ + providers: props.data?.providers, + })), +)(Edit); diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v2/View.jsx b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/View.jsx new file mode 100644 index 0000000..b0f1d11 --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/View.jsx @@ -0,0 +1,70 @@ +import React from 'react'; +import { compose } from 'redux'; +import { connectToMultipleProviders } from '@eeacms/volto-datablocks/hocs'; +import { DataConnectedValue } from '@eeacms/volto-datablocks/Utils'; +import { Sources } from '@eeacms/volto-datablocks/Utils'; + +const ProviderView = ({ provider }) => { + if (!provider) return ''; + return ( +
+ + + +
+ ); +}; + +const View = (props) => { + const { data = {} } = props; + const { providers = [] } = data; + + if (!providers.length) return

Add providers

; + + return ( +
+
+ {providers.map((provider, index) => { + if ((index + 1) % 2 === 0) return ''; + return ( +
+ + +
+ ); + })} + {props.data?.chartSources && providers?.[0]?.url && ( +
+ +
+ )} +
+
+ ); +}; + +export default compose( + connectToMultipleProviders((props) => ({ + providers: props.data.providers, + })), +)(View); diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v2/schema.js b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/schema.js new file mode 100644 index 0000000..629743d --- /dev/null +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v2/schema.js @@ -0,0 +1,204 @@ +import React from 'react'; + +const dataProviderSchemaExtender = (schema = {}, child = {}, props) => { + const title = child.title || child.url; + if (!title || !props.providers_data) return schema; + const provider_data = props.providers_data[title] || {}; + const columns = Array.from( + new Set(Object.keys(provider_data || {})), + ).map((n) => [n, n]); + const rows = + child.column && provider_data[child.column] + ? provider_data[child.column].map((value, index) => [index, value]) + : []; + + return { + ...schema, + properties: { + ...schema.properties, + column: { + title: 'Column', + choices: columns, + }, + row: { + title: 'Row', + choices: rows, + }, + }, + }; +}; + +const dataProviderSchema = { + title: 'Data provider', + fieldsets: [ + { + id: 'default', + title: 'Properties', + fields: [ + 'title', + 'url', + 'column', + 'row', + 'specifier', + 'textTemplate', + 'placeholder', + ], + }, + { + id: 'advanced', + title: 'Advanced', + fields: [ + 'className', + 'wrapperClassName', + 'has_data_query_by_context', + 'has_data_query_by_provider', + 'data_query', + ], + }, + ], + properties: { + title: { + type: 'text', + title: 'Title', + }, + url: { + widget: 'object_by_path', + title: 'Data provider', + }, + column: { + title: 'Column', + choices: [], + }, + row: { + title: 'Row', + default: 0, + choices: [], + }, + specifier: { + title: 'Format specifier', + description: ( + <> + See{' '} + + D3 format documentation + + + ), + }, + textTemplate: { + title: 'Text template', + widget: 'textarea', + description: 'Add suffix/prefix to text. Use {} for value placeholder', + }, + placeholder: { + title: 'Placeholder', + }, + className: { + type: 'select', + title: 'Class name', + choices: [ + ['data', 'Data'], + ['data-content', 'Data content'], + ], + }, + wrapperClassName: { + type: 'select', + title: 'Wrapper class name', + choices: [ + ['data-wrapper brown', 'Brown wrapper'], + ['data-wrapper green', 'Green wrapper'], + ['data-wrapper blue', 'Blue wrapper'], + ['data-wrapper purple', 'Purple wrapper'], + ], + }, + has_data_query_by_context: { + title: 'Has data_query by context', + type: 'boolean', + defaultValue: true, + }, + has_data_query_by_provider: { + title: 'Has data_query by provider', + type: 'boolean', + defaultValue: true, + }, + data_query: { + title: 'Data query', + widget: 'data_query', + }, + }, + required: ['title', 'id'], +}; + +const SourceSchema = { + title: 'Source', + + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['chart_source', 'chart_source_link'], + }, + ], + + properties: { + chart_source: { + type: 'string', + title: 'Source', + }, + chart_source_link: { + type: 'string', + title: 'Link', + }, + }, + + required: ['source'], +}; + +export default (props) => ({ + title: 'Discodata connector block', + fieldsets: [ + { + id: 'default', + title: 'Default', + fields: ['block_title'], + }, + { + id: 'advanced', + title: 'Advanced', + fields: ['providers'], + }, + { + id: 'sources', + title: 'Sources', + fields: ['chartSources', 'download_button'], + }, + ], + properties: { + block_title: { + title: 'Title', + widget: 'textarea', + }, + chartSources: { + widget: 'object_list', + title: 'Sources', + schema: SourceSchema, + }, + download_button: { + title: 'Download button', + type: 'boolean', + defaultValue: true, + }, + providers: { + title: 'Data providers', + widget: 'object_list', + schema: dataProviderSchema, + schemaExtender: (schema, child) => + dataProviderSchemaExtender(schema, child, props), + }, + }, + required: [], +}); diff --git a/src/index.js b/src/index.js index 18a580e..6100ebe 100644 --- a/src/index.js +++ b/src/index.js @@ -4,6 +4,7 @@ import Unauthorized from '@plone/volto/components/theme/Unauthorized/Unauthorize import installAppExtras from '@eeacms/volto-forests-theme/components/theme/AppExtras'; import { applyConfig as installFiseFrontend } from './localconfig'; +import installDiscodataConnectorBlock from '@eeacms/volto-forests-theme/components/manage/Blocks/DiscodataConnectorBlock'; import ObjectListInlineWidget from './components/manage/Widgets/ObjectListInlineWidget'; import reducers from '@eeacms/volto-forests-theme/reducers'; @@ -12,10 +13,11 @@ import './slate-styles.css'; export default function applyConfig(config) { // Add here your project's configuration here by modifying `config` accordingly - config = [installAppExtras, installFiseFrontend].reduce( - (acc, apply) => apply(acc), - config, - ); + config = [ + installAppExtras, + installFiseFrontend, + installDiscodataConnectorBlock, + ].reduce((acc, apply) => apply(acc), config); config.settings = { ...config.settings, diff --git a/theme/site/globals/site.overrides b/theme/site/globals/site.overrides index 41b8843..e8b80e0 100644 --- a/theme/site/globals/site.overrides +++ b/theme/site/globals/site.overrides @@ -176,7 +176,7 @@ body.has-toolbar { .sticky-header-nav { - + position: absolute; bottom: -5px; z-index: 4; @@ -190,7 +190,7 @@ body.has-toolbar { .header-navigation-lead { - + .navigation-prev { position: absolute; @@ -1558,239 +1558,242 @@ span.float-right { } // Europe forest specific blocks -h5 { - color: @darkBrown; - font-weight: bold; - text-transform: uppercase; -} - -div { - &.flex { - display: flex; +.block-container, +.columns-view { + h5 { + color: @darkBrown; + font-weight: bold; + text-transform: uppercase; } - &.flex-column { - flex-direction: column; - } + div { + &.flex { + display: flex; + } - &.h-100 { - height: 100%; - } + &.flex-column { + flex-direction: column; + } - &.w-100 { - width: 100%; + &.h-100 { + height: 100%; + } + + &.w-100 { + width: 100%; + } + + &.pa-1 { + padding: 10px; + } } - &.pa-1 { + .forest-block-wrapper { + display: flex; + height: 100%; padding: 10px; } -} -.forest-block-wrapper { - display: flex; - height: 100%; - padding: 10px; -} - -.forest-specific-block { - display: flex; - width: 100%; - flex-direction: column; -} + .forest-specific-block { + display: flex; + width: 100%; + flex-direction: column; + } -.land-data-wrapper, -.data-wrapper { - display: flex; - align-items: center; - padding: 1em; - margin-bottom: 1em; - border-radius: 5px; + .land-data-wrapper, + .data-wrapper { + display: flex; + align-items: center; + padding: 1em; + margin-bottom: 1em; + border-radius: 5px; - .formatted-value { - span { - color: #000 !important; - font-size: 13px; - font-weight: normal; + .formatted-value { + span { + color: #000 !important; + font-size: 13px; + font-weight: normal; + } } } -} -.land-data, -.data { - padding-right: 10px; + .land-data, + .data { + padding-right: 10px; - span { - font-size: 50px; - font-weight: 700; - line-height: 46px; + span { + font-size: 50px; + font-weight: 700; + line-height: 46px; + } } -} -.land-data-content, -.data-content { - font-size: 14px; - font-weight: 300; + .land-data-content, + .data-content { + font-size: 14px; + font-weight: 300; - span { - display: block; - font-size: 18px; - font-weight: 500; - } + span { + display: block; + font-size: 18px; + font-weight: 500; + } - .data-entity { - display: inline; + .data-entity { + display: inline; + } } -} -.data-wrapper { - &.brown { - background-color: @tileBackgroundColor; + .data-wrapper { + &.brown { + background-color: @tileBackgroundColor; - span { - color: @darkBrown; + span { + color: @darkBrown; + } } - } - &.green { - background-color: @tileBackgroundColor; - color: @darkGreen; + &.green { + background-color: @tileBackgroundColor; + color: @darkGreen; - .data-content { - color: initial; + .data-content { + color: initial; - span { - color: @darkGreen; + span { + color: @darkGreen; + } } } - } - &.blue { - background-color: @tileBackgroundColor; - color: @darkBlue; + &.blue { + background-color: @tileBackgroundColor; + color: @darkBlue; - .data-content { - color: initial; + .data-content { + color: initial; - span { - color: @darkBlue; + span { + color: @darkBlue; + } } } - } - &.purple { - background-color: @tileBackgroundColor; - color: @purple; + &.purple { + background-color: @tileBackgroundColor; + color: @purple; - .data-content { - color: initial; + .data-content { + color: initial; - span { - color: @purple; + span { + color: @purple; + } } } } -} -.ui.list .item span { - float: right; -} + .ui.list .item span { + float: right; + } -.ui.bulleted.list > .item { - padding: 7px 0; - font-size: 14px; + .ui.bulleted.list > .item { + padding: 7px 0; + font-size: 14px; - a { - color: @textColor; - text-decoration: underline; + a { + color: @textColor; + text-decoration: underline; + } } -} -ul.ui.list li:before, -.ui.bulleted.list .list > .item:before, -.ui.bulleted.list > .item:before { - top: 10px; - width: 8px; - height: 8px; - background-color: @darkBrown; - border-radius: 50%; - content: ''; -} + ul.ui.list li:before, + .ui.bulleted.list .list > .item:before, + .ui.bulleted.list > .item:before { + top: 10px; + width: 8px; + height: 8px; + background-color: @darkBrown; + border-radius: 50%; + content: ''; + } -.forest-comparation { - .land-data-wrapper { - margin-bottom: 0; - background-color: @tileBackgroundColor; + .forest-comparation { + .land-data-wrapper { + margin-bottom: 0; + background-color: @tileBackgroundColor; - span { - color: @darkBrown; + span { + color: @darkBrown; + } } } -} -@tileBackgroundColor: #f6f6f5; -@darkBlue: #002d54; + @tileBackgroundColor: #f6f6f5; + @darkBlue: #002d54; -.forest-area-block { - .land-data-wrapper.eu28-data { - background-color: @tileBackgroundColor; - color: @darkGreen; + .forest-area-block { + .land-data-wrapper.eu28-data { + background-color: @tileBackgroundColor; + color: @darkGreen; - .land-data-content { - color: initial; + .land-data-content { + color: initial; - span { - color: @darkGreen; + span { + color: @darkGreen; + } + } + + &.purple { + color: @purple; + + .land-data-content { + color: initial; + + span { + color: @purple; + } + } } } - &.purple { - color: @purple; + .land-data-wrapper.eea39-data { + background-color: @tileBackgroundColor; + color: @darkBlue; .land-data-content { color: initial; span { - color: @purple; + color: @darkBlue; } } } - } - - .land-data-wrapper.eea39-data { - background-color: @tileBackgroundColor; - color: @darkBlue; - .land-data-content { - color: initial; + .coverage-data { + display: flex; + margin: 1em 0; + color: #fff; + font-size: 16px; span { - color: @darkBlue; + display: block; + margin-bottom: 0.2em; + font-size: 28px; } } } - .coverage-data { - display: flex; - margin: 1em 0; - color: #fff; - font-size: 16px; - - span { - display: block; - margin-bottom: 0.2em; - font-size: 28px; - } + .map-wrapper { + padding: 5px; + border: 1px solid @darkGreen; + border-radius: 5px; } -} -.map-wrapper { - padding: 5px; - border: 1px solid @darkGreen; - border-radius: 5px; -} - -.map-buttons { - margin-top: 2em; + .map-buttons { + margin-top: 2em; + } } .forest-patch-size-distribution { From cc5e03b45ba8ce1b3e632353bd1f43c4ae62c54e Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Thu, 3 Feb 2022 18:33:45 +0200 Subject: [PATCH 7/9] Use latest volto-datablocks --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 771822c..913b23f 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "dependencies": { "@eeacms/volto-plotlycharts": "*", "@eeacms/volto-addons-forest": "*", - "@eeacms/volto-datablocks": "2.0.16", + "@eeacms/volto-datablocks": "*", "@eeacms/volto-matomo": "*", "react-highlight-words": "^0.16.0", "react-image-gallery": "1.2.7", From 4c7e23a7d710c656ad39260b9d4509cc903c424c Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Thu, 3 Feb 2022 18:35:03 +0200 Subject: [PATCH 8/9] Release 0.2.0-beta.0 --- CHANGELOG.md | 174 +++++++++++++++++++++++++++++++++++++-------------- package.json | 2 +- 2 files changed, 129 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c97eec6..a3ea337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,23 @@ 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). +#### [0.2.0-beta.0](https://github.com/eea/volto-forests-theme/compare/0.1.37...0.2.0-beta.0) + +- adapt to data-blocks v3 [`#52`](https://github.com/eea/volto-forests-theme/pull/52) +- Added DiscodataConnectorBlock [`7502a9e`](https://github.com/eea/volto-forests-theme/commit/7502a9ea2c57aacfdfabf86fbf80c752c856cb6a) +- rafactor navigation block [`e96c48e`](https://github.com/eea/volto-forests-theme/commit/e96c48ed5995b075a2b8a7c0834befd6608763db) +- Updated style [`26d2e5e`](https://github.com/eea/volto-forests-theme/commit/26d2e5ee9cef90533338359e35bc6df1ada7f7eb) +- WIP: adapt to volto-datablocks v3 [`e5d143e`](https://github.com/eea/volto-forests-theme/commit/e5d143e8a76a1d90921b73f7e6f7238b31fd4164) +- fix navigationBlock View [`ee0891a`](https://github.com/eea/volto-forests-theme/commit/ee0891addb9e7c78283b2d9b03a36224ac6904b6) +- Use latest volto-datablocks [`cc5e03b`](https://github.com/eea/volto-forests-theme/commit/cc5e03b45ba8ce1b3e632353bd1f43c4ae62c54e) +- object list widget [`874c0d7`](https://github.com/eea/volto-forests-theme/commit/874c0d7077b9e36fccf765547e550679c4bfb5bb) + #### [0.1.37](https://github.com/eea/volto-forests-theme/compare/0.1.36...0.1.37) +> 28 January 2022 + +- Develop [`#51`](https://github.com/eea/volto-forests-theme/pull/51) +- Automated release 0.1.37 [`1041fa9`](https://github.com/eea/volto-forests-theme/commit/1041fa93211041e502ba7d16dcec65300c467cbd) - nice homepage buttons [`14616da`](https://github.com/eea/volto-forests-theme/commit/14616da40f1d51b24d1fee540b0ea9331569306b) #### [0.1.36](https://github.com/eea/volto-forests-theme/compare/0.1.35...0.1.36) @@ -13,8 +28,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 26 January 2022 - Develop [`#50`](https://github.com/eea/volto-forests-theme/pull/50) -- Copy paste edit [`332e668`](https://github.com/eea/volto-forests-theme/commit/332e6689a7182945a93289bc2a5fa7e5f8577fa2) - Added Copy/Paste appextras [`3e752fb`](https://github.com/eea/volto-forests-theme/commit/3e752fb80be602f9d16a46494c2fd07a81add407) +- Automated release 0.1.36 [`30ae847`](https://github.com/eea/volto-forests-theme/commit/30ae8470ebe14b4d8a7d41efc167cf39176f2ba7) +- Copy paste edit [`332e668`](https://github.com/eea/volto-forests-theme/commit/332e6689a7182945a93289bc2a5fa7e5f8577fa2) #### [0.1.35](https://github.com/eea/volto-forests-theme/compare/0.1.34...0.1.35) @@ -22,13 +38,15 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#49`](https://github.com/eea/volto-forests-theme/pull/49) - Stickyy [`#46`](https://github.com/eea/volto-forests-theme/pull/46) +- Automated release 0.1.35 [`5a986f4`](https://github.com/eea/volto-forests-theme/commit/5a986f47ecc94bca00ae50dfc89f4cc816ae1dbd) - Merge pull request #48 from eea/fix3 [`52652b7`](https://github.com/eea/volto-forests-theme/commit/52652b7994f3ba444ea3856f36884339b2e3b81f) +- make breadcrumb and lead navigation sticky [`d7eff97`](https://github.com/eea/volto-forests-theme/commit/d7eff971dbc5e9b76892706122243bc257528685) +- style [`e673d77`](https://github.com/eea/volto-forests-theme/commit/e673d77eebcc19aa6d1575ef01610a4f786d65ba) +- remove sticky breadcrumbs [`ac2c60a`](https://github.com/eea/volto-forests-theme/commit/ac2c60a8715ee0c39d536865cc22ecb3f5cc7d2d) +- Automated release 0.1.34 [`ab04189`](https://github.com/eea/volto-forests-theme/commit/ab04189fdcaf3cfd387001323f1e1e91613290f9) - change z index so nav can be visible [`0bf5d5b`](https://github.com/eea/volto-forests-theme/commit/0bf5d5bc63485fa24a1315ecf135d2656ede4111) - fix [`1270603`](https://github.com/eea/volto-forests-theme/commit/1270603f351f818eb7f26645d9ef226f7041bf67) - fix [`cd7bea1`](https://github.com/eea/volto-forests-theme/commit/cd7bea1cd3681ae7e4cb84fbc6fd6ba028b9a103) -- style [`e673d77`](https://github.com/eea/volto-forests-theme/commit/e673d77eebcc19aa6d1575ef01610a4f786d65ba) -- remove sticky breadcrumbs [`ac2c60a`](https://github.com/eea/volto-forests-theme/commit/ac2c60a8715ee0c39d536865cc22ecb3f5cc7d2d) -- make breadcrumb and lead navigation sticky [`d7eff97`](https://github.com/eea/volto-forests-theme/commit/d7eff971dbc5e9b76892706122243bc257528685) #### [0.1.34](https://github.com/eea/volto-forests-theme/compare/0.1.33...0.1.34) @@ -41,6 +59,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 18 January 2022 - Increase Slider timer to 8sec [`#45`](https://github.com/eea/volto-forests-theme/pull/45) +- Automated release 0.1.33 [`f7a81a3`](https://github.com/eea/volto-forests-theme/commit/f7a81a32328bcd634cac5f142afabc3486a3b445) #### [0.1.32](https://github.com/eea/volto-forests-theme/compare/0.1.31...0.1.32) @@ -49,43 +68,57 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#43`](https://github.com/eea/volto-forests-theme/pull/43) - Revert "add cy tests" [`#44`](https://github.com/eea/volto-forests-theme/pull/44) - add cy tests [`#41`](https://github.com/eea/volto-forests-theme/pull/41) -- don't hide header extra text in mobile view [`328c34a`](https://github.com/eea/volto-forests-theme/commit/328c34aacd59803c8d8128efbec4754fc6415298) - remove position toolbar [`f285aef`](https://github.com/eea/volto-forests-theme/commit/f285aef3024d9f8846698614557d395980c90178) +- Automated release 0.1.32 [`15235d3`](https://github.com/eea/volto-forests-theme/commit/15235d3946b87dc47534c5363ac40f8e033d03b3) - fix [`bb6d6bc`](https://github.com/eea/volto-forests-theme/commit/bb6d6bc5dfe60eb9cfa2887e7b0e46e13b5870ec) +- don't hide header extra text in mobile view [`328c34a`](https://github.com/eea/volto-forests-theme/commit/328c34aacd59803c8d8128efbec4754fc6415298) #### [0.1.31](https://github.com/eea/volto-forests-theme/compare/0.1.30...0.1.31) > 12 January 2022 - Volto 14 compatibility [`#42`](https://github.com/eea/volto-forests-theme/pull/42) +- volto 14 compatibility [`c6b6c04`](https://github.com/eea/volto-forests-theme/commit/c6b6c04269c3cba3be764ade14f3d13dd8e49fcd) +- [JENKINS] Refs #142742 - Add release documentation [`bec1694`](https://github.com/eea/volto-forests-theme/commit/bec16945057c574b4d4ed13ab457f85f029ac460) +- update JENKINSFILE [`331be35`](https://github.com/eea/volto-forests-theme/commit/331be35a8dd9f1f6c0fde84dd7d14c1ba3d9cea7) +- use admin/secret [`5830a61`](https://github.com/eea/volto-forests-theme/commit/5830a6128996af1eaac262b43214f29cc759e686) +- Automated release 0.1.31 [`7491b1f`](https://github.com/eea/volto-forests-theme/commit/7491b1fdb5597e31248fea39e869ef5c67280ff0) +- JENKINS: use plone-backend in docker [`b09fcc3`](https://github.com/eea/volto-forests-theme/commit/b09fcc384a146a82130cbe8d87cb4ad1a9aa8530) +- JENKINS:use standard plone for now [`e1c47d3`](https://github.com/eea/volto-forests-theme/commit/e1c47d31dc36491ad310efe8ba5509b3c5428c61) - fix content.js customization [`0f16a6a`](https://github.com/eea/volto-forests-theme/commit/0f16a6a35560c63f5d62e7786a2e84da136b0081) +- remove dup componentDidMount [`8fa7055`](https://github.com/eea/volto-forests-theme/commit/8fa70553a541f65ba2fd2e069b18d7be4e62cc0c) - update App customizations [`30369c5`](https://github.com/eea/volto-forests-theme/commit/30369c58628047e6c2ee2d612192be046b7336a5) +- admin/admin [`67cc9e6`](https://github.com/eea/volto-forests-theme/commit/67cc9e6e148547d5e7d78efa0c0b86e072441ff6) +- [JENKINS] Refs #142010 - Do not save successfull test videos [`61592c6`](https://github.com/eea/volto-forests-theme/commit/61592c64b1bc3364bb80cf176e88714c38c6b3b0) +- update JENKINSFILE [`2c2a0f0`](https://github.com/eea/volto-forests-theme/commit/2c2a0f0f463352943e78a346b0a50234a98bfeab) - fix warning [`e881021`](https://github.com/eea/volto-forests-theme/commit/e8810211219389fffdacba55f67520e00cebc9b6) +- update JENKINSFILE [`5eefd98`](https://github.com/eea/volto-forests-theme/commit/5eefd9806e2edd48c2a48d03e2568e04ad167212) - comment navigation [`f247d9f`](https://github.com/eea/volto-forests-theme/commit/f247d9fb5ce7565aeffcdb1ae593997318173553) -- admin/admin [`67cc9e6`](https://github.com/eea/volto-forests-theme/commit/67cc9e6e148547d5e7d78efa0c0b86e072441ff6) -- use admin/secret [`5830a61`](https://github.com/eea/volto-forests-theme/commit/5830a6128996af1eaac262b43214f29cc759e686) - use proper container links [`7ff2bdd`](https://github.com/eea/volto-forests-theme/commit/7ff2bdd70e1ae563511f40e7fe5df156f2c2a7b7) -- remove dup componentDidMount [`8fa7055`](https://github.com/eea/volto-forests-theme/commit/8fa70553a541f65ba2fd2e069b18d7be4e62cc0c) - rename to componentDidMount [`0efabf9`](https://github.com/eea/volto-forests-theme/commit/0efabf9176d768707247a7b62d4dd3e994c473df) -- volto 14 compatibility [`c6b6c04`](https://github.com/eea/volto-forests-theme/commit/c6b6c04269c3cba3be764ade14f3d13dd8e49fcd) #### [0.1.30](https://github.com/eea/volto-forests-theme/compare/0.1.29...0.1.30) > 14 December 2021 - Webscore fix [`#40`](https://github.com/eea/volto-forests-theme/pull/40) -- fix edge case in browser detection [`e76c224`](https://github.com/eea/volto-forests-theme/commit/e76c224dac6fbe3f8acfef4c7349d15a5977c100) +- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`77022ad`](https://github.com/eea/volto-forests-theme/commit/77022adf3a0be30513b6c30827877e3e483085ec) +- Automated release 0.1.30 [`5b0966a`](https://github.com/eea/volto-forests-theme/commit/5b0966a0f3a004341196f2446081bb4f9093a52f) - [Webscore fix] Correct expresion [`98e76f9`](https://github.com/eea/volto-forests-theme/commit/98e76f91a594ccdb1180886bee14bf87937deb4e) +- Automated release 0.1.30 [`a8d9ee3`](https://github.com/eea/volto-forests-theme/commit/a8d9ee3b0f483ab073f47ec6f09a3e5289774213) +- fix edge case in browser detection [`e76c224`](https://github.com/eea/volto-forests-theme/commit/e76c224dac6fbe3f8acfef4c7349d15a5977c100) #### [0.1.29](https://github.com/eea/volto-forests-theme/compare/0.1.28...0.1.29) > 13 December 2021 - Custom Block & add stretch class in block wrapper [`#39`](https://github.com/eea/volto-forests-theme/pull/39) -- Prettier fix [`fccfd6f`](https://github.com/eea/volto-forests-theme/commit/fccfd6f35ad1f525127c7eb22f8f3dc124daa423) +- Customized block container cleanup [`6907ae2`](https://github.com/eea/volto-forests-theme/commit/6907ae2f199a844b36bf2e171dc8e89d3a4b8a98) +- Automated release 0.1.29 [`c73b81e`](https://github.com/eea/volto-forests-theme/commit/c73b81e1d9348c25236c4e162ad91d239e43d59b) - Lint fix MD [`7a5d5bb`](https://github.com/eea/volto-forests-theme/commit/7a5d5bba075ded2c5b02562db7a3ab31a2f3133c) +- Automated release 0.1.29 [`71bf1e4`](https://github.com/eea/volto-forests-theme/commit/71bf1e4091eadfc3c4d73f5e689bd0310ad4e36b) - Document customization [`2eb3624`](https://github.com/eea/volto-forests-theme/commit/2eb36241380c8077a4f5a0614d395f3b22b745bd) -- Customized block container cleanup [`6907ae2`](https://github.com/eea/volto-forests-theme/commit/6907ae2f199a844b36bf2e171dc8e89d3a4b8a98) +- Prettier fix [`fccfd6f`](https://github.com/eea/volto-forests-theme/commit/fccfd6f35ad1f525127c7eb22f8f3dc124daa423) #### [0.1.28](https://github.com/eea/volto-forests-theme/compare/0.1.27...0.1.28) @@ -94,6 +127,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#38`](https://github.com/eea/volto-forests-theme/pull/38) - fallback for window.env [`f9ddb2d`](https://github.com/eea/volto-forests-theme/commit/f9ddb2ddb8fbe060ec498f9f3dbd346859ed4895) - Don't show header-image-content in Data catalogue [`3d2704f`](https://github.com/eea/volto-forests-theme/commit/3d2704fff57124f7bc80ba915add1d6e67331d18) +- Automated release 0.1.28 [`51659e4`](https://github.com/eea/volto-forests-theme/commit/51659e435c03eb722709ace6122fb2652b8105d3) +- Automated release 0.1.28 [`4a8a476`](https://github.com/eea/volto-forests-theme/commit/4a8a47675c84dba06ba32e662a7ecde6d5556b15) #### [0.1.27](https://github.com/eea/volto-forests-theme/compare/0.1.26...0.1.27) @@ -101,24 +136,29 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Dont insert header data from state on data catalogue [`#36`](https://github.com/eea/volto-forests-theme/pull/36) - add navDepth [`5e8e4aa`](https://github.com/eea/volto-forests-theme/commit/5e8e4aae20b122fdf36b327cc7d87154b30e1504) +- Automated release 0.1.27 [`9b05f8d`](https://github.com/eea/volto-forests-theme/commit/9b05f8dc424e29b21249d11a1892fddeefcd8105) - typo fix [`d92c5bd`](https://github.com/eea/volto-forests-theme/commit/d92c5bdd980baaf638930c784d3ad398a450d916) +- Automated release 0.1.27 [`e619b0f`](https://github.com/eea/volto-forests-theme/commit/e619b0fd8475c38571179ab789099f10bce267b0) +- Automated release 0.1.27 [`505922f`](https://github.com/eea/volto-forests-theme/commit/505922fad7e6f538c647ee94cc67bed5b4021913) #### [0.1.26](https://github.com/eea/volto-forests-theme/compare/0.1.25...0.1.26) > 8 December 2021 - Fix missing data in AppHeader (catalogue) [`#35`](https://github.com/eea/volto-forests-theme/pull/35) -- remove unused prop [`4fbc04b`](https://github.com/eea/volto-forests-theme/commit/4fbc04b36fb607681c40d2ededd5d489060d792e) -- fix Header missing prop in AppHeader.jsx ( catalogue) [`15d8896`](https://github.com/eea/volto-forests-theme/commit/15d88961cd24995424bce95e895fa7c781609fea) - revert configs [`791c6b0`](https://github.com/eea/volto-forests-theme/commit/791c6b064d5b827ddb32e8d237c7c2a54b90e592) - add missing routes [`8339cc2`](https://github.com/eea/volto-forests-theme/commit/8339cc26ded18ccfd6e24a3c1ce0ee8b334b8f50) +- fix Header missing prop in AppHeader.jsx ( catalogue) [`15d8896`](https://github.com/eea/volto-forests-theme/commit/15d88961cd24995424bce95e895fa7c781609fea) +- Automated release 0.1.26 [`1d27b00`](https://github.com/eea/volto-forests-theme/commit/1d27b00f173fabc108c43dfc893a00cd69790545) - Update theme.config [`7950572`](https://github.com/eea/volto-forests-theme/commit/7950572377c097f3df90a15062d93ed74d1caf92) +- remove unused prop [`4fbc04b`](https://github.com/eea/volto-forests-theme/commit/4fbc04b36fb607681c40d2ededd5d489060d792e) #### [0.1.25](https://github.com/eea/volto-forests-theme/compare/0.1.24...0.1.25) > 7 December 2021 - Update index.js [`#34`](https://github.com/eea/volto-forests-theme/pull/34) +- Automated release 0.1.25 [`7924f8a`](https://github.com/eea/volto-forests-theme/commit/7924f8a80430e659b4a6f8a29e6081d59f65956c) #### [0.1.24](https://github.com/eea/volto-forests-theme/compare/0.1.23...0.1.24) @@ -127,13 +167,21 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#33`](https://github.com/eea/volto-forests-theme/pull/33) - fix autoplay on header slides [`#30`](https://github.com/eea/volto-forests-theme/pull/30) - placeholder loader if json does not exist [`#29`](https://github.com/eea/volto-forests-theme/pull/29) +- [JENKINS] rollback last commit [`775e80b`](https://github.com/eea/volto-forests-theme/commit/775e80b045f65f94862b6a6f9c617dafd2f002e8) +- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`84e121e`](https://github.com/eea/volto-forests-theme/commit/84e121e0e4feb6fe65af86249694fa86cfa1b4b4) +- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`dba948c`](https://github.com/eea/volto-forests-theme/commit/dba948c6a36025e576408e1f68413efc787ed047) +- Automated release 0.1.24 [`f798bbb`](https://github.com/eea/volto-forests-theme/commit/f798bbb9cd2715a47265eaa3e73a1564c9747e6d) +- Automated release 0.1.23 [`d1b3582`](https://github.com/eea/volto-forests-theme/commit/d1b3582be773bfbd17830fc1a0c248b0f1a4525e) - pin datablocks version [`c1f949e`](https://github.com/eea/volto-forests-theme/commit/c1f949e64e00f51ccadba9fafa59ec762f68d33d) +- Automated release 0.1.23 [`69afed5`](https://github.com/eea/volto-forests-theme/commit/69afed51a0e4e6045db4352b84334b9d1eb77ef6) - Refs #142010 - Optimize Volto-addons gitflow pipelines [`4450362`](https://github.com/eea/volto-forests-theme/commit/445036275a9262292c8a22be10ef547b55ceacb2) +- Automated release 0.1.23 [`47b44a1`](https://github.com/eea/volto-forests-theme/commit/47b44a1b2d2f090426dbc1db294816b63d7ce424) #### [0.1.23](https://github.com/eea/volto-forests-theme/compare/0.1.22...0.1.23) > 3 December 2021 +- [JENKINS] Fix latest release [`#32`](https://github.com/eea/volto-forests-theme/pull/32) - Develop [`#31`](https://github.com/eea/volto-forests-theme/pull/31) #### [0.1.22](https://github.com/eea/volto-forests-theme/compare/0.1.21...0.1.22) @@ -142,6 +190,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#28`](https://github.com/eea/volto-forests-theme/pull/28) - Header better data fetch cleanup [`6baf20d`](https://github.com/eea/volto-forests-theme/commit/6baf20d3f89471aea06efc59737947e5625afc03) +- Automated release 0.1.22 [`37a94ef`](https://github.com/eea/volto-forests-theme/commit/37a94ef96b428cb037cea8f2be3e7034f92b0746) #### [0.1.21](https://github.com/eea/volto-forests-theme/compare/0.1.20...0.1.21) @@ -149,10 +198,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#27`](https://github.com/eea/volto-forests-theme/pull/27) - redesign homepage desktop [`#6`](https://github.com/eea/volto-forests-theme/pull/6) -- update view on 1200 [`63e1d5a`](https://github.com/eea/volto-forests-theme/commit/63e1d5af7066437e52436b8f7c59e13c0b59768b) - complete redesign of homepage [`889b6a2`](https://github.com/eea/volto-forests-theme/commit/889b6a297dea2f388f0f237ab42866e71d82e577) -- change colours [`343e1ba`](https://github.com/eea/volto-forests-theme/commit/343e1bafad504ce27481a7773af674f9026efecd) - new improvements to header design [`2a3183d`](https://github.com/eea/volto-forests-theme/commit/2a3183d03e58054433634d2420b7cade9ca666cb) +- Automated release 0.1.21 [`af7a9fe`](https://github.com/eea/volto-forests-theme/commit/af7a9fee539ff2d96affb5e6a0cb4e7edda9a3d4) +- change colours [`343e1ba`](https://github.com/eea/volto-forests-theme/commit/343e1bafad504ce27481a7773af674f9026efecd) +- update view on 1200 [`63e1d5a`](https://github.com/eea/volto-forests-theme/commit/63e1d5af7066437e52436b8f7c59e13c0b59768b) #### [0.1.20](https://github.com/eea/volto-forests-theme/compare/0.1.19...0.1.20) @@ -161,20 +211,25 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#26`](https://github.com/eea/volto-forests-theme/pull/26) - Develop [`#25`](https://github.com/eea/volto-forests-theme/pull/25) - update logo, plotly colour scheme and theme colours [`#23`](https://github.com/eea/volto-forests-theme/pull/23) -- More styles to slate, added fonts [`40ae6ab`](https://github.com/eea/volto-forests-theme/commit/40ae6ab83ea6bb41e64f57ed6bee2b19af10620d) -- Lint fix [`1d2c554`](https://github.com/eea/volto-forests-theme/commit/1d2c5548adfd01c4f483931f0a211d157cf9bc71) - Switch request for parent data in Header [`fd89852`](https://github.com/eea/volto-forests-theme/commit/fd8985232d98b0e2c04b36dd9ee31d45ac76ef5d) - fix [`bd6b8b3`](https://github.com/eea/volto-forests-theme/commit/bd6b8b39b259e9b04d51111adf6df789908232d0) +- More styles to slate, added fonts [`40ae6ab`](https://github.com/eea/volto-forests-theme/commit/40ae6ab83ea6bb41e64f57ed6bee2b19af10620d) +- Automated release 0.1.20 [`56a6c7b`](https://github.com/eea/volto-forests-theme/commit/56a6c7b1bff10d94f42e675365a3a1feb0ba102a) +- Lint fix [`1d2c554`](https://github.com/eea/volto-forests-theme/commit/1d2c5548adfd01c4f483931f0a211d157cf9bc71) +- Automated release 0.1.20 [`ff7bb55`](https://github.com/eea/volto-forests-theme/commit/ff7bb554ee4a9ff88dba434ecd9d7de3dac8cd43) +- Automated release 0.1.20 [`d7b8b14`](https://github.com/eea/volto-forests-theme/commit/d7b8b14cab98ed66d0be8c2d9d22ae92afd84be8) +- Automated release 0.1.20 [`9665cbb`](https://github.com/eea/volto-forests-theme/commit/9665cbb2bcd9e122d86b4693a23a1519b2b9c733) #### [0.1.19](https://github.com/eea/volto-forests-theme/compare/0.1.18...0.1.19) > 24 November 2021 - Develop [`#24`](https://github.com/eea/volto-forests-theme/pull/24) -- Prettier fix lint [`12bc882`](https://github.com/eea/volto-forests-theme/commit/12bc882f9cf9bca011bcf94f053c5e19914af678) -- Fix styles lint [`af7ed16`](https://github.com/eea/volto-forests-theme/commit/af7ed16718d8c5a60c63db61788563d63533c8f7) - Add more color sets [`9375225`](https://github.com/eea/volto-forests-theme/commit/9375225921d889c5bd191cf35aaf015b560dfaf0) - Refs #142010 - Optimize Volto-addons gitflow pipelines [`d81fb94`](https://github.com/eea/volto-forests-theme/commit/d81fb941ef732c980abdcc4111c8317062f13088) +- Automated release 0.1.19 [`90651bf`](https://github.com/eea/volto-forests-theme/commit/90651bf44c9e98e26a98260a43e9799059651981) +- Fix styles lint [`af7ed16`](https://github.com/eea/volto-forests-theme/commit/af7ed16718d8c5a60c63db61788563d63533c8f7) +- Prettier fix lint [`12bc882`](https://github.com/eea/volto-forests-theme/commit/12bc882f9cf9bca011bcf94f053c5e19914af678) #### [0.1.18](https://github.com/eea/volto-forests-theme/compare/0.1.17...0.1.18) @@ -182,6 +237,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#22`](https://github.com/eea/volto-forests-theme/pull/22) - Add FISE colors in slate styles [`2921654`](https://github.com/eea/volto-forests-theme/commit/2921654debf224c8ffdaf325f3ca3180ee9dc323) +- Automated release 0.1.18 [`0c6c6cd`](https://github.com/eea/volto-forests-theme/commit/0c6c6cd96d0b2f9ea8cef07b5d49168e72198d7d) +- Automated release 0.1.17 [`d01c76c`](https://github.com/eea/volto-forests-theme/commit/d01c76c90ac104493971677454852883e6d8c544) - More limits to Lead nav [`0b5a328`](https://github.com/eea/volto-forests-theme/commit/0b5a328ac6b00ff60f2d4fa894d5cf131f5ce6a2) #### [0.1.17](https://github.com/eea/volto-forests-theme/compare/0.1.16...0.1.17) @@ -195,36 +252,44 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 22 November 2021 - Fill page width & lower limits on Lead Navigation [`#20`](https://github.com/eea/volto-forests-theme/pull/20) +- Automated release 0.1.16 [`24104f2`](https://github.com/eea/volto-forests-theme/commit/24104f270fe0a387ef73b8cbc665440067ce2fce) #### [0.1.15](https://github.com/eea/volto-forests-theme/compare/0.1.14...0.1.15) > 22 November 2021 - Show full page title on truncated text [`#19`](https://github.com/eea/volto-forests-theme/pull/19) +- Automated release 0.1.15 [`2c33a74`](https://github.com/eea/volto-forests-theme/commit/2c33a74d59c5bbacbc62211149f0d456c200acaa) #### [0.1.14](https://github.com/eea/volto-forests-theme/compare/0.1.13...0.1.14) > 19 November 2021 - Lead navigation responsive updates [`#18`](https://github.com/eea/volto-forests-theme/pull/18) -- NavigationLead variable items dep on width & fixed widths [`8283528`](https://github.com/eea/volto-forests-theme/commit/82835288bce93dc00f6ebb9f097f6675e4a74fe9) - Lead nav w fixed items & dimensions [`a8c810e`](https://github.com/eea/volto-forests-theme/commit/a8c810efc9f6fa8f73b366750df41236798b6464) +- NavigationLead variable items dep on width & fixed widths [`8283528`](https://github.com/eea/volto-forests-theme/commit/82835288bce93dc00f6ebb9f097f6675e4a74fe9) +- Automated release 0.1.14 [`7237db4`](https://github.com/eea/volto-forests-theme/commit/7237db49eb0bd3d6b5852c3709a155626a699999) +- Automated release 0.1.14 [`9ae1776`](https://github.com/eea/volto-forests-theme/commit/9ae1776d84c4123a52eacaaf94b01b633153e9d1) #### [0.1.13](https://github.com/eea/volto-forests-theme/compare/0.1.12...0.1.13) > 18 November 2021 - Lead Image updates [`#17`](https://github.com/eea/volto-forests-theme/pull/17) +- Automated release 0.1.13 [`a5f471d`](https://github.com/eea/volto-forests-theme/commit/a5f471df40cdfbe49a10f58e3476dbe77311ffc9) #### [0.1.12](https://github.com/eea/volto-forests-theme/compare/0.1.11...0.1.12) > 17 November 2021 - standalone slate-inline styles [`#16`](https://github.com/eea/volto-forests-theme/pull/16) -- Update README.md [`0423c59`](https://github.com/eea/volto-forests-theme/commit/0423c591edb17226d7b3c8d4781770f6af7b0463) - use standalone slate-inline stlyes [`53422fe`](https://github.com/eea/volto-forests-theme/commit/53422fe68677953b0c46079c388e912968f18928) +- Automated release 0.1.12 [`974b358`](https://github.com/eea/volto-forests-theme/commit/974b3582afef4e46814d914b243fb61a3fa6861d) - fix anchor color [`332d681`](https://github.com/eea/volto-forests-theme/commit/332d681a6e6683030cf02089aaa49d3fdb07c524) +- Update README.md [`0423c59`](https://github.com/eea/volto-forests-theme/commit/0423c591edb17226d7b3c8d4781770f6af7b0463) - anchor color [`c981adb`](https://github.com/eea/volto-forests-theme/commit/c981adb70b34e526bc573d135c3b7999c1fe485e) +- Add Sonarqube tag using forests-frontend addons list [`6a7f316`](https://github.com/eea/volto-forests-theme/commit/6a7f3168c8e4e20df94f458bd8ff21d509db1dcd) +- Automated release 0.1.12 [`6bd52c0`](https://github.com/eea/volto-forests-theme/commit/6bd52c0e74b6dd2779883cb7b990347cde676240) #### [0.1.11](https://github.com/eea/volto-forests-theme/compare/0.1.10...0.1.11) @@ -233,29 +298,35 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix issue in config [`#15`](https://github.com/eea/volto-forests-theme/pull/15) - fix logo issue and nav block issue [`#10`](https://github.com/eea/volto-forests-theme/pull/10) - Update package.json [`#14`](https://github.com/eea/volto-forests-theme/pull/14) -- fix source formatting color of <a> in slate inline style [`1128f18`](https://github.com/eea/volto-forests-theme/commit/1128f18e7ba439f321100d63d163fb5585e74579) +- also run cypress [`378720d`](https://github.com/eea/volto-forests-theme/commit/378720d0d7e9e3b70dd418ea98f046559fd2c625) +- fix bugs [`553baab`](https://github.com/eea/volto-forests-theme/commit/553baab27881d9b0845b38e8ad2ae92bc602e2cd) +- support runtime vars in addon itself [`29ce50f`](https://github.com/eea/volto-forests-theme/commit/29ce50f8486a3930a47fccd4078607a06f660dd1) +- Automated release 0.1.11 [`1055baa`](https://github.com/eea/volto-forests-theme/commit/1055baaa018a13d9276f855dce2fcd36501ed43c) +- Automated release 0.1.11 [`4567c1e`](https://github.com/eea/volto-forests-theme/commit/4567c1e00ec689e130d91102f923cecb02fff30c) - cy: more fixes [`0b48880`](https://github.com/eea/volto-forests-theme/commit/0b488801aafaed393a0c3c2ae16d237e9122319d) +- prettier [`07d7ef0`](https://github.com/eea/volto-forests-theme/commit/07d7ef0639c135241196fa844a1e30a3c3ba0ec5) +- Automated release 0.1.11 [`22100a6`](https://github.com/eea/volto-forests-theme/commit/22100a60ad46428681c52d033639104b45357f0d) +- fix source formatting color of <a> in slate inline style [`1128f18`](https://github.com/eea/volto-forests-theme/commit/1128f18e7ba439f321100d63d163fb5585e74579) - fix tests [`5c8d3c1`](https://github.com/eea/volto-forests-theme/commit/5c8d3c1f4bfedba9df337f8a1bd728b224cdf207) -- load addon in config [`c8fd0dc`](https://github.com/eea/volto-forests-theme/commit/c8fd0dc5af9f3433156c14857b54ef68f4b84bd4) - fix config resolving [`dbb965c`](https://github.com/eea/volto-forests-theme/commit/dbb965cd53570b4b16c309f97ed6ad5f1d536597) -- remove volto-addons-forest [`53a0d65`](https://github.com/eea/volto-forests-theme/commit/53a0d65a1b0b5415449633fcaf24bfa85cb361b0) - relative import [`8ccb73b`](https://github.com/eea/volto-forests-theme/commit/8ccb73b44e706a630455765015d5cd23a093987a) -- support runtime vars in addon itself [`29ce50f`](https://github.com/eea/volto-forests-theme/commit/29ce50f8486a3930a47fccd4078607a06f660dd1) - fix cypress [`57a3005`](https://github.com/eea/volto-forests-theme/commit/57a30053c76260f70fe4e99f311c77ae5ca113c1) - add required env vars [`59ae093`](https://github.com/eea/volto-forests-theme/commit/59ae093410487f59cda9561633c416deee0d2216) -- also run cypress [`378720d`](https://github.com/eea/volto-forests-theme/commit/378720d0d7e9e3b70dd418ea98f046559fd2c625) -- fix bugs [`553baab`](https://github.com/eea/volto-forests-theme/commit/553baab27881d9b0845b38e8ad2ae92bc602e2cd) -- prettier [`07d7ef0`](https://github.com/eea/volto-forests-theme/commit/07d7ef0639c135241196fa844a1e30a3c3ba0ec5) +- Automated release 0.1.11 [`bf456fc`](https://github.com/eea/volto-forests-theme/commit/bf456fc221d5e3d71422bc058fcc618de68c08b7) +- load addon in config [`c8fd0dc`](https://github.com/eea/volto-forests-theme/commit/c8fd0dc5af9f3433156c14857b54ef68f4b84bd4) +- remove volto-addons-forest [`53a0d65`](https://github.com/eea/volto-forests-theme/commit/53a0d65a1b0b5415449633fcaf24bfa85cb361b0) #### [0.1.10](https://github.com/eea/volto-forests-theme/compare/0.1.9...0.1.10) > 11 November 2021 - `volto-slate="*"` [`#13`](https://github.com/eea/volto-forests-theme/pull/13) -- Update package.json [`e86518b`](https://github.com/eea/volto-forests-theme/commit/e86518b11b3716750eddf3158bc2b5ed7b22c455) -- update volto-slate [`7248c0f`](https://github.com/eea/volto-forests-theme/commit/7248c0f0db2916f3a98d2f360e0da462545c49a9) +- Automated release 0.1.9 [`5b2349b`](https://github.com/eea/volto-forests-theme/commit/5b2349b91e2842b0b79b9dcbc4f72fa54cacfded) +- Automated release 0.1.10 [`6eae855`](https://github.com/eea/volto-forests-theme/commit/6eae85525f4ac26fc2ea6c5cff387ec1bdc44c70) - remove api_path [`99418ac`](https://github.com/eea/volto-forests-theme/commit/99418ac02dfb0adb6af39c5e4a1e64a928070748) - api_path [`1542048`](https://github.com/eea/volto-forests-theme/commit/1542048c90ee77e9ffc92a87f64856adad981af0) +- Update package.json [`e86518b`](https://github.com/eea/volto-forests-theme/commit/e86518b11b3716750eddf3158bc2b5ed7b22c455) +- update volto-slate [`7248c0f`](https://github.com/eea/volto-forests-theme/commit/7248c0f0db2916f3a98d2f360e0da462545c49a9) #### [0.1.9](https://github.com/eea/volto-forests-theme/compare/0.1.8...0.1.9) @@ -268,20 +339,23 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 10 November 2021 - remove duplicate helpers [`#11`](https://github.com/eea/volto-forests-theme/pull/11) +- Automated release 0.1.8 [`bd03df9`](https://github.com/eea/volto-forests-theme/commit/bd03df9748601717f4189e6963e531522f7d6ee8) #### [0.1.7](https://github.com/eea/volto-forests-theme/compare/0.1.6...0.1.7) > 10 November 2021 - LeadNav update [`#9`](https://github.com/eea/volto-forests-theme/pull/9) +- Automated release 0.1.7 [`ce4e2dc`](https://github.com/eea/volto-forests-theme/commit/ce4e2dc85f6be5c5b1f521911d4d121ced70e770) #### [0.1.6](https://github.com/eea/volto-forests-theme/compare/0.1.5...0.1.6) > 9 November 2021 - Develop: hotfix for homepage view wide [`#8`](https://github.com/eea/volto-forests-theme/pull/8) -- use wideview on homepage [`63129c8`](https://github.com/eea/volto-forests-theme/commit/63129c8f2d614507064fbd381fa5922f851769e9) - update [`70f5181`](https://github.com/eea/volto-forests-theme/commit/70f5181f92b3397788ff0fbf839b71b3ed70e2a9) +- use wideview on homepage [`63129c8`](https://github.com/eea/volto-forests-theme/commit/63129c8f2d614507064fbd381fa5922f851769e9) +- Automated release 0.1.6 [`eb8d116`](https://github.com/eea/volto-forests-theme/commit/eb8d11678004f4438433f55245c0f583edb18a83) #### [0.1.5](https://github.com/eea/volto-forests-theme/compare/0.1.4...0.1.5) @@ -289,6 +363,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#7`](https://github.com/eea/volto-forests-theme/pull/7) - update to volto 14 [`32c2318`](https://github.com/eea/volto-forests-theme/commit/32c231806a553bc06e783d8a8cb8e3576e57babe) +- Automated release 0.1.5 [`b6d2efd`](https://github.com/eea/volto-forests-theme/commit/b6d2efdf27f825549706567fad81b0228f20c523) - fix query params [`7764b3a`](https://github.com/eea/volto-forests-theme/commit/7764b3a46e3b5fafca833f6ec838ac02dc1bee81) #### [0.1.4](https://github.com/eea/volto-forests-theme/compare/0.1.3...0.1.4) @@ -296,11 +371,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 5 November 2021 - Updates on HeaderNavigation & Lead Image [`#5`](https://github.com/eea/volto-forests-theme/pull/5) -- lint fix [`25997f2`](https://github.com/eea/volto-forests-theme/commit/25997f2b27dd12b0b946021aed58add10325fc7b) +- window Dimension hook & mobile improvements to HeaderNavigation [`7b2f299`](https://github.com/eea/volto-forests-theme/commit/7b2f299806ed17a54f4f1c7568e9f1028e82c012) - Use screen width from store rather than hook [`b15911d`](https://github.com/eea/volto-forests-theme/commit/b15911d6e188f5e436ddd8828743137361f4f17b) -- Hover typo [`90b38c4`](https://github.com/eea/volto-forests-theme/commit/90b38c4b4552849581b193ebafa9e4664c17dded) +- Automated release 0.1.4 [`d97f290`](https://github.com/eea/volto-forests-theme/commit/d97f290a3be902f989bcbfeb07d75eb55a2f6abe) - window dimension hook cleanup [`6f94af1`](https://github.com/eea/volto-forests-theme/commit/6f94af12cf46f19e06d19a255497a465efb34180) -- window Dimension hook & mobile improvements to HeaderNavigation [`7b2f299`](https://github.com/eea/volto-forests-theme/commit/7b2f299806ed17a54f4f1c7568e9f1028e82c012) +- Automated release 0.1.4 [`578667d`](https://github.com/eea/volto-forests-theme/commit/578667d24e1f69f00e74195291fab3813f244655) +- Hover typo [`90b38c4`](https://github.com/eea/volto-forests-theme/commit/90b38c4b4552849581b193ebafa9e4664c17dded) +- lint fix [`25997f2`](https://github.com/eea/volto-forests-theme/commit/25997f2b27dd12b0b946021aed58add10325fc7b) #### [0.1.3](https://github.com/eea/volto-forests-theme/compare/0.1.2...0.1.3) @@ -308,6 +385,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#4`](https://github.com/eea/volto-forests-theme/pull/4) - update datablocks [`#3`](https://github.com/eea/volto-forests-theme/pull/3) +- Automated release 0.1.3 [`8fb5dc4`](https://github.com/eea/volto-forests-theme/commit/8fb5dc4571dc3902ad3ef542951bca6682d6e6b1) - update all [`00d048f`](https://github.com/eea/volto-forests-theme/commit/00d048f510949690c053b2e71335293bc4e7166e) - make it general [`edb83c1`](https://github.com/eea/volto-forests-theme/commit/edb83c11d791da06f33a3096129136f378139530) @@ -316,27 +394,31 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 3 November 2021 - Header check for data improved & better fix for the text issue [`#2`](https://github.com/eea/volto-forests-theme/pull/2) +- Automated release 0.1.2 [`398cca2`](https://github.com/eea/volto-forests-theme/commit/398cca2c2a87df256f4a5045577648fee0cfa9f5) #### [0.1.1](https://github.com/eea/volto-forests-theme/compare/0.1.0...0.1.1) > 3 November 2021 - Forest theme components [`#1`](https://github.com/eea/volto-forests-theme/pull/1) -- skip cypress [`876c96d`](https://github.com/eea/volto-forests-theme/commit/876c96d0b5227bebe4c1f6d160b1bc7bc6d64e97) -- fix tests [`cc1563c`](https://github.com/eea/volto-forests-theme/commit/cc1563c1e38fe567d983e12cae33780a1554da2b) -- WIP [`15696de`](https://github.com/eea/volto-forests-theme/commit/15696de3e5062ade0ddf877a8e1dda0a44b0c33a) -- fix addons [`0f7220c`](https://github.com/eea/volto-forests-theme/commit/0f7220c687f064655f727541489715de6cccf189) -- remove plugin [`5f66b40`](https://github.com/eea/volto-forests-theme/commit/5f66b40221909ac222071abfaacad02c6e4a4fe1) -- add packages [`9cba3d5`](https://github.com/eea/volto-forests-theme/commit/9cba3d5d64817e11ca876087dac632f6d3f901e1) +- forest theme components and customisations [`5724a62`](https://github.com/eea/volto-forests-theme/commit/5724a62e1e9e7b072214fac200bd52e8b9fd5bc9) - lint:fix [`7bd7408`](https://github.com/eea/volto-forests-theme/commit/7bd7408525d4f0f1e2872c2177ff5846c8ede434) - normalise imports and sync components [`ce3dc70`](https://github.com/eea/volto-forests-theme/commit/ce3dc7065a4a29e05b5c1c863e860320cc58e307) -- update settings [`5417a84`](https://github.com/eea/volto-forests-theme/commit/5417a84625168f48b9c8af78d9192e770db627c8) -- add theme packages, lint:fix [`87e437f`](https://github.com/eea/volto-forests-theme/commit/87e437f8fa39f0d77beae424640e7648ce3e464b) -- fix theme [`5ef7c4d`](https://github.com/eea/volto-forests-theme/commit/5ef7c4de21d18c8f0a0bc6529f88466d2fc6ab3d) +- yarn bootstrap [`bba2bf9`](https://github.com/eea/volto-forests-theme/commit/bba2bf9de053a1631db3aece8466e2aca26e920a) - normalize imports [`36ce0ce`](https://github.com/eea/volto-forests-theme/commit/36ce0ce4350684f22b0e393610e384e6dab63347) -- add packages [`6523575`](https://github.com/eea/volto-forests-theme/commit/6523575f6e3b593d321420803efb17c584c8f2de) -- forest theme components and customisations [`5724a62`](https://github.com/eea/volto-forests-theme/commit/5724a62e1e9e7b072214fac200bd52e8b9fd5bc9) +- add theme packages, lint:fix [`87e437f`](https://github.com/eea/volto-forests-theme/commit/87e437f8fa39f0d77beae424640e7648ce3e464b) +- fix tests [`cc1563c`](https://github.com/eea/volto-forests-theme/commit/cc1563c1e38fe567d983e12cae33780a1554da2b) - update readme [`1d8a9c2`](https://github.com/eea/volto-forests-theme/commit/1d8a9c24611c5b8fafa165070917e72b12967071) +- skip cypress [`876c96d`](https://github.com/eea/volto-forests-theme/commit/876c96d0b5227bebe4c1f6d160b1bc7bc6d64e97) +- Automated release 0.1.1 [`bee7b22`](https://github.com/eea/volto-forests-theme/commit/bee7b224a498deabc92886117619fbc732304399) +- update settings [`5417a84`](https://github.com/eea/volto-forests-theme/commit/5417a84625168f48b9c8af78d9192e770db627c8) +- add packages [`6523575`](https://github.com/eea/volto-forests-theme/commit/6523575f6e3b593d321420803efb17c584c8f2de) +- remove plugin [`5f66b40`](https://github.com/eea/volto-forests-theme/commit/5f66b40221909ac222071abfaacad02c6e4a4fe1) +- fix addons [`0f7220c`](https://github.com/eea/volto-forests-theme/commit/0f7220c687f064655f727541489715de6cccf189) +- add packages [`9cba3d5`](https://github.com/eea/volto-forests-theme/commit/9cba3d5d64817e11ca876087dac632f6d3f901e1) +- fix theme [`5ef7c4d`](https://github.com/eea/volto-forests-theme/commit/5ef7c4de21d18c8f0a0bc6529f88466d2fc6ab3d) +- Automated release 0.1.1 [`5bd8347`](https://github.com/eea/volto-forests-theme/commit/5bd83473c8cf9675882072773782e487bb654aa2) +- WIP [`15696de`](https://github.com/eea/volto-forests-theme/commit/15696de3e5062ade0ddf877a8e1dda0a44b0c33a) #### 0.1.0 diff --git a/package.json b/package.json index 913b23f..b2c0e81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-forests-theme", - "version": "0.1.37", + "version": "0.2.0-beta.0", "description": "@eeacms/volto-forests-theme: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 8ce707c47d153db67bf04e647c7699f827b64221 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 4 Feb 2022 08:56:57 +0000 Subject: [PATCH 9/9] Automated release 0.2.0 --- CHANGELOG.md | 173 +++++++++++++++++---------------------------------- package.json | 2 +- 2 files changed, 57 insertions(+), 118 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3ea337..f73a7e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,23 +4,29 @@ 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). +#### [0.2.0](https://github.com/eea/volto-forests-theme/compare/0.2.0-beta.0...0.2.0) + +- Develop [`#51`](https://github.com/eea/volto-forests-theme/pull/51) + #### [0.2.0-beta.0](https://github.com/eea/volto-forests-theme/compare/0.1.37...0.2.0-beta.0) +> 3 February 2022 + - adapt to data-blocks v3 [`#52`](https://github.com/eea/volto-forests-theme/pull/52) +- Release 0.2.0-beta.0 [`4c7e23a`](https://github.com/eea/volto-forests-theme/commit/4c7e23a7d710c656ad39260b9d4509cc903c424c) +- Use latest volto-datablocks [`cc5e03b`](https://github.com/eea/volto-forests-theme/commit/cc5e03b45ba8ce1b3e632353bd1f43c4ae62c54e) - Added DiscodataConnectorBlock [`7502a9e`](https://github.com/eea/volto-forests-theme/commit/7502a9ea2c57aacfdfabf86fbf80c752c856cb6a) +- fix navigationBlock View [`ee0891a`](https://github.com/eea/volto-forests-theme/commit/ee0891addb9e7c78283b2d9b03a36224ac6904b6) +- object list widget [`874c0d7`](https://github.com/eea/volto-forests-theme/commit/874c0d7077b9e36fccf765547e550679c4bfb5bb) - rafactor navigation block [`e96c48e`](https://github.com/eea/volto-forests-theme/commit/e96c48ed5995b075a2b8a7c0834befd6608763db) - Updated style [`26d2e5e`](https://github.com/eea/volto-forests-theme/commit/26d2e5ee9cef90533338359e35bc6df1ada7f7eb) - WIP: adapt to volto-datablocks v3 [`e5d143e`](https://github.com/eea/volto-forests-theme/commit/e5d143e8a76a1d90921b73f7e6f7238b31fd4164) -- fix navigationBlock View [`ee0891a`](https://github.com/eea/volto-forests-theme/commit/ee0891addb9e7c78283b2d9b03a36224ac6904b6) -- Use latest volto-datablocks [`cc5e03b`](https://github.com/eea/volto-forests-theme/commit/cc5e03b45ba8ce1b3e632353bd1f43c4ae62c54e) -- object list widget [`874c0d7`](https://github.com/eea/volto-forests-theme/commit/874c0d7077b9e36fccf765547e550679c4bfb5bb) #### [0.1.37](https://github.com/eea/volto-forests-theme/compare/0.1.36...0.1.37) > 28 January 2022 - Develop [`#51`](https://github.com/eea/volto-forests-theme/pull/51) -- Automated release 0.1.37 [`1041fa9`](https://github.com/eea/volto-forests-theme/commit/1041fa93211041e502ba7d16dcec65300c467cbd) - nice homepage buttons [`14616da`](https://github.com/eea/volto-forests-theme/commit/14616da40f1d51b24d1fee540b0ea9331569306b) #### [0.1.36](https://github.com/eea/volto-forests-theme/compare/0.1.35...0.1.36) @@ -28,9 +34,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 26 January 2022 - Develop [`#50`](https://github.com/eea/volto-forests-theme/pull/50) -- Added Copy/Paste appextras [`3e752fb`](https://github.com/eea/volto-forests-theme/commit/3e752fb80be602f9d16a46494c2fd07a81add407) -- Automated release 0.1.36 [`30ae847`](https://github.com/eea/volto-forests-theme/commit/30ae8470ebe14b4d8a7d41efc167cf39176f2ba7) - Copy paste edit [`332e668`](https://github.com/eea/volto-forests-theme/commit/332e6689a7182945a93289bc2a5fa7e5f8577fa2) +- Added Copy/Paste appextras [`3e752fb`](https://github.com/eea/volto-forests-theme/commit/3e752fb80be602f9d16a46494c2fd07a81add407) #### [0.1.35](https://github.com/eea/volto-forests-theme/compare/0.1.34...0.1.35) @@ -38,15 +43,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#49`](https://github.com/eea/volto-forests-theme/pull/49) - Stickyy [`#46`](https://github.com/eea/volto-forests-theme/pull/46) -- Automated release 0.1.35 [`5a986f4`](https://github.com/eea/volto-forests-theme/commit/5a986f47ecc94bca00ae50dfc89f4cc816ae1dbd) - Merge pull request #48 from eea/fix3 [`52652b7`](https://github.com/eea/volto-forests-theme/commit/52652b7994f3ba444ea3856f36884339b2e3b81f) -- make breadcrumb and lead navigation sticky [`d7eff97`](https://github.com/eea/volto-forests-theme/commit/d7eff971dbc5e9b76892706122243bc257528685) -- style [`e673d77`](https://github.com/eea/volto-forests-theme/commit/e673d77eebcc19aa6d1575ef01610a4f786d65ba) -- remove sticky breadcrumbs [`ac2c60a`](https://github.com/eea/volto-forests-theme/commit/ac2c60a8715ee0c39d536865cc22ecb3f5cc7d2d) -- Automated release 0.1.34 [`ab04189`](https://github.com/eea/volto-forests-theme/commit/ab04189fdcaf3cfd387001323f1e1e91613290f9) - change z index so nav can be visible [`0bf5d5b`](https://github.com/eea/volto-forests-theme/commit/0bf5d5bc63485fa24a1315ecf135d2656ede4111) - fix [`1270603`](https://github.com/eea/volto-forests-theme/commit/1270603f351f818eb7f26645d9ef226f7041bf67) - fix [`cd7bea1`](https://github.com/eea/volto-forests-theme/commit/cd7bea1cd3681ae7e4cb84fbc6fd6ba028b9a103) +- style [`e673d77`](https://github.com/eea/volto-forests-theme/commit/e673d77eebcc19aa6d1575ef01610a4f786d65ba) +- remove sticky breadcrumbs [`ac2c60a`](https://github.com/eea/volto-forests-theme/commit/ac2c60a8715ee0c39d536865cc22ecb3f5cc7d2d) +- make breadcrumb and lead navigation sticky [`d7eff97`](https://github.com/eea/volto-forests-theme/commit/d7eff971dbc5e9b76892706122243bc257528685) #### [0.1.34](https://github.com/eea/volto-forests-theme/compare/0.1.33...0.1.34) @@ -59,7 +62,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 18 January 2022 - Increase Slider timer to 8sec [`#45`](https://github.com/eea/volto-forests-theme/pull/45) -- Automated release 0.1.33 [`f7a81a3`](https://github.com/eea/volto-forests-theme/commit/f7a81a32328bcd634cac5f142afabc3486a3b445) #### [0.1.32](https://github.com/eea/volto-forests-theme/compare/0.1.31...0.1.32) @@ -68,57 +70,43 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#43`](https://github.com/eea/volto-forests-theme/pull/43) - Revert "add cy tests" [`#44`](https://github.com/eea/volto-forests-theme/pull/44) - add cy tests [`#41`](https://github.com/eea/volto-forests-theme/pull/41) +- don't hide header extra text in mobile view [`328c34a`](https://github.com/eea/volto-forests-theme/commit/328c34aacd59803c8d8128efbec4754fc6415298) - remove position toolbar [`f285aef`](https://github.com/eea/volto-forests-theme/commit/f285aef3024d9f8846698614557d395980c90178) -- Automated release 0.1.32 [`15235d3`](https://github.com/eea/volto-forests-theme/commit/15235d3946b87dc47534c5363ac40f8e033d03b3) - fix [`bb6d6bc`](https://github.com/eea/volto-forests-theme/commit/bb6d6bc5dfe60eb9cfa2887e7b0e46e13b5870ec) -- don't hide header extra text in mobile view [`328c34a`](https://github.com/eea/volto-forests-theme/commit/328c34aacd59803c8d8128efbec4754fc6415298) #### [0.1.31](https://github.com/eea/volto-forests-theme/compare/0.1.30...0.1.31) > 12 January 2022 - Volto 14 compatibility [`#42`](https://github.com/eea/volto-forests-theme/pull/42) -- volto 14 compatibility [`c6b6c04`](https://github.com/eea/volto-forests-theme/commit/c6b6c04269c3cba3be764ade14f3d13dd8e49fcd) -- [JENKINS] Refs #142742 - Add release documentation [`bec1694`](https://github.com/eea/volto-forests-theme/commit/bec16945057c574b4d4ed13ab457f85f029ac460) -- update JENKINSFILE [`331be35`](https://github.com/eea/volto-forests-theme/commit/331be35a8dd9f1f6c0fde84dd7d14c1ba3d9cea7) -- use admin/secret [`5830a61`](https://github.com/eea/volto-forests-theme/commit/5830a6128996af1eaac262b43214f29cc759e686) -- Automated release 0.1.31 [`7491b1f`](https://github.com/eea/volto-forests-theme/commit/7491b1fdb5597e31248fea39e869ef5c67280ff0) -- JENKINS: use plone-backend in docker [`b09fcc3`](https://github.com/eea/volto-forests-theme/commit/b09fcc384a146a82130cbe8d87cb4ad1a9aa8530) -- JENKINS:use standard plone for now [`e1c47d3`](https://github.com/eea/volto-forests-theme/commit/e1c47d31dc36491ad310efe8ba5509b3c5428c61) - fix content.js customization [`0f16a6a`](https://github.com/eea/volto-forests-theme/commit/0f16a6a35560c63f5d62e7786a2e84da136b0081) -- remove dup componentDidMount [`8fa7055`](https://github.com/eea/volto-forests-theme/commit/8fa70553a541f65ba2fd2e069b18d7be4e62cc0c) - update App customizations [`30369c5`](https://github.com/eea/volto-forests-theme/commit/30369c58628047e6c2ee2d612192be046b7336a5) -- admin/admin [`67cc9e6`](https://github.com/eea/volto-forests-theme/commit/67cc9e6e148547d5e7d78efa0c0b86e072441ff6) -- [JENKINS] Refs #142010 - Do not save successfull test videos [`61592c6`](https://github.com/eea/volto-forests-theme/commit/61592c64b1bc3364bb80cf176e88714c38c6b3b0) -- update JENKINSFILE [`2c2a0f0`](https://github.com/eea/volto-forests-theme/commit/2c2a0f0f463352943e78a346b0a50234a98bfeab) - fix warning [`e881021`](https://github.com/eea/volto-forests-theme/commit/e8810211219389fffdacba55f67520e00cebc9b6) -- update JENKINSFILE [`5eefd98`](https://github.com/eea/volto-forests-theme/commit/5eefd9806e2edd48c2a48d03e2568e04ad167212) - comment navigation [`f247d9f`](https://github.com/eea/volto-forests-theme/commit/f247d9fb5ce7565aeffcdb1ae593997318173553) +- admin/admin [`67cc9e6`](https://github.com/eea/volto-forests-theme/commit/67cc9e6e148547d5e7d78efa0c0b86e072441ff6) +- use admin/secret [`5830a61`](https://github.com/eea/volto-forests-theme/commit/5830a6128996af1eaac262b43214f29cc759e686) - use proper container links [`7ff2bdd`](https://github.com/eea/volto-forests-theme/commit/7ff2bdd70e1ae563511f40e7fe5df156f2c2a7b7) +- remove dup componentDidMount [`8fa7055`](https://github.com/eea/volto-forests-theme/commit/8fa70553a541f65ba2fd2e069b18d7be4e62cc0c) - rename to componentDidMount [`0efabf9`](https://github.com/eea/volto-forests-theme/commit/0efabf9176d768707247a7b62d4dd3e994c473df) +- volto 14 compatibility [`c6b6c04`](https://github.com/eea/volto-forests-theme/commit/c6b6c04269c3cba3be764ade14f3d13dd8e49fcd) #### [0.1.30](https://github.com/eea/volto-forests-theme/compare/0.1.29...0.1.30) > 14 December 2021 - Webscore fix [`#40`](https://github.com/eea/volto-forests-theme/pull/40) -- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`77022ad`](https://github.com/eea/volto-forests-theme/commit/77022adf3a0be30513b6c30827877e3e483085ec) -- Automated release 0.1.30 [`5b0966a`](https://github.com/eea/volto-forests-theme/commit/5b0966a0f3a004341196f2446081bb4f9093a52f) -- [Webscore fix] Correct expresion [`98e76f9`](https://github.com/eea/volto-forests-theme/commit/98e76f91a594ccdb1180886bee14bf87937deb4e) -- Automated release 0.1.30 [`a8d9ee3`](https://github.com/eea/volto-forests-theme/commit/a8d9ee3b0f483ab073f47ec6f09a3e5289774213) - fix edge case in browser detection [`e76c224`](https://github.com/eea/volto-forests-theme/commit/e76c224dac6fbe3f8acfef4c7349d15a5977c100) +- [Webscore fix] Correct expresion [`98e76f9`](https://github.com/eea/volto-forests-theme/commit/98e76f91a594ccdb1180886bee14bf87937deb4e) #### [0.1.29](https://github.com/eea/volto-forests-theme/compare/0.1.28...0.1.29) > 13 December 2021 - Custom Block & add stretch class in block wrapper [`#39`](https://github.com/eea/volto-forests-theme/pull/39) -- Customized block container cleanup [`6907ae2`](https://github.com/eea/volto-forests-theme/commit/6907ae2f199a844b36bf2e171dc8e89d3a4b8a98) -- Automated release 0.1.29 [`c73b81e`](https://github.com/eea/volto-forests-theme/commit/c73b81e1d9348c25236c4e162ad91d239e43d59b) +- Prettier fix [`fccfd6f`](https://github.com/eea/volto-forests-theme/commit/fccfd6f35ad1f525127c7eb22f8f3dc124daa423) - Lint fix MD [`7a5d5bb`](https://github.com/eea/volto-forests-theme/commit/7a5d5bba075ded2c5b02562db7a3ab31a2f3133c) -- Automated release 0.1.29 [`71bf1e4`](https://github.com/eea/volto-forests-theme/commit/71bf1e4091eadfc3c4d73f5e689bd0310ad4e36b) - Document customization [`2eb3624`](https://github.com/eea/volto-forests-theme/commit/2eb36241380c8077a4f5a0614d395f3b22b745bd) -- Prettier fix [`fccfd6f`](https://github.com/eea/volto-forests-theme/commit/fccfd6f35ad1f525127c7eb22f8f3dc124daa423) +- Customized block container cleanup [`6907ae2`](https://github.com/eea/volto-forests-theme/commit/6907ae2f199a844b36bf2e171dc8e89d3a4b8a98) #### [0.1.28](https://github.com/eea/volto-forests-theme/compare/0.1.27...0.1.28) @@ -127,8 +115,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#38`](https://github.com/eea/volto-forests-theme/pull/38) - fallback for window.env [`f9ddb2d`](https://github.com/eea/volto-forests-theme/commit/f9ddb2ddb8fbe060ec498f9f3dbd346859ed4895) - Don't show header-image-content in Data catalogue [`3d2704f`](https://github.com/eea/volto-forests-theme/commit/3d2704fff57124f7bc80ba915add1d6e67331d18) -- Automated release 0.1.28 [`51659e4`](https://github.com/eea/volto-forests-theme/commit/51659e435c03eb722709ace6122fb2652b8105d3) -- Automated release 0.1.28 [`4a8a476`](https://github.com/eea/volto-forests-theme/commit/4a8a47675c84dba06ba32e662a7ecde6d5556b15) #### [0.1.27](https://github.com/eea/volto-forests-theme/compare/0.1.26...0.1.27) @@ -136,29 +122,24 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Dont insert header data from state on data catalogue [`#36`](https://github.com/eea/volto-forests-theme/pull/36) - add navDepth [`5e8e4aa`](https://github.com/eea/volto-forests-theme/commit/5e8e4aae20b122fdf36b327cc7d87154b30e1504) -- Automated release 0.1.27 [`9b05f8d`](https://github.com/eea/volto-forests-theme/commit/9b05f8dc424e29b21249d11a1892fddeefcd8105) - typo fix [`d92c5bd`](https://github.com/eea/volto-forests-theme/commit/d92c5bdd980baaf638930c784d3ad398a450d916) -- Automated release 0.1.27 [`e619b0f`](https://github.com/eea/volto-forests-theme/commit/e619b0fd8475c38571179ab789099f10bce267b0) -- Automated release 0.1.27 [`505922f`](https://github.com/eea/volto-forests-theme/commit/505922fad7e6f538c647ee94cc67bed5b4021913) #### [0.1.26](https://github.com/eea/volto-forests-theme/compare/0.1.25...0.1.26) > 8 December 2021 - Fix missing data in AppHeader (catalogue) [`#35`](https://github.com/eea/volto-forests-theme/pull/35) +- remove unused prop [`4fbc04b`](https://github.com/eea/volto-forests-theme/commit/4fbc04b36fb607681c40d2ededd5d489060d792e) +- fix Header missing prop in AppHeader.jsx ( catalogue) [`15d8896`](https://github.com/eea/volto-forests-theme/commit/15d88961cd24995424bce95e895fa7c781609fea) - revert configs [`791c6b0`](https://github.com/eea/volto-forests-theme/commit/791c6b064d5b827ddb32e8d237c7c2a54b90e592) - add missing routes [`8339cc2`](https://github.com/eea/volto-forests-theme/commit/8339cc26ded18ccfd6e24a3c1ce0ee8b334b8f50) -- fix Header missing prop in AppHeader.jsx ( catalogue) [`15d8896`](https://github.com/eea/volto-forests-theme/commit/15d88961cd24995424bce95e895fa7c781609fea) -- Automated release 0.1.26 [`1d27b00`](https://github.com/eea/volto-forests-theme/commit/1d27b00f173fabc108c43dfc893a00cd69790545) - Update theme.config [`7950572`](https://github.com/eea/volto-forests-theme/commit/7950572377c097f3df90a15062d93ed74d1caf92) -- remove unused prop [`4fbc04b`](https://github.com/eea/volto-forests-theme/commit/4fbc04b36fb607681c40d2ededd5d489060d792e) #### [0.1.25](https://github.com/eea/volto-forests-theme/compare/0.1.24...0.1.25) > 7 December 2021 - Update index.js [`#34`](https://github.com/eea/volto-forests-theme/pull/34) -- Automated release 0.1.25 [`7924f8a`](https://github.com/eea/volto-forests-theme/commit/7924f8a80430e659b4a6f8a29e6081d59f65956c) #### [0.1.24](https://github.com/eea/volto-forests-theme/compare/0.1.23...0.1.24) @@ -167,21 +148,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#33`](https://github.com/eea/volto-forests-theme/pull/33) - fix autoplay on header slides [`#30`](https://github.com/eea/volto-forests-theme/pull/30) - placeholder loader if json does not exist [`#29`](https://github.com/eea/volto-forests-theme/pull/29) -- [JENKINS] rollback last commit [`775e80b`](https://github.com/eea/volto-forests-theme/commit/775e80b045f65f94862b6a6f9c617dafd2f002e8) -- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`84e121e`](https://github.com/eea/volto-forests-theme/commit/84e121e0e4feb6fe65af86249694fa86cfa1b4b4) -- [JENKINS] Refs #142010 - Optimize Volto-addons gitflow pipelines [`dba948c`](https://github.com/eea/volto-forests-theme/commit/dba948c6a36025e576408e1f68413efc787ed047) -- Automated release 0.1.24 [`f798bbb`](https://github.com/eea/volto-forests-theme/commit/f798bbb9cd2715a47265eaa3e73a1564c9747e6d) -- Automated release 0.1.23 [`d1b3582`](https://github.com/eea/volto-forests-theme/commit/d1b3582be773bfbd17830fc1a0c248b0f1a4525e) - pin datablocks version [`c1f949e`](https://github.com/eea/volto-forests-theme/commit/c1f949e64e00f51ccadba9fafa59ec762f68d33d) -- Automated release 0.1.23 [`69afed5`](https://github.com/eea/volto-forests-theme/commit/69afed51a0e4e6045db4352b84334b9d1eb77ef6) - Refs #142010 - Optimize Volto-addons gitflow pipelines [`4450362`](https://github.com/eea/volto-forests-theme/commit/445036275a9262292c8a22be10ef547b55ceacb2) -- Automated release 0.1.23 [`47b44a1`](https://github.com/eea/volto-forests-theme/commit/47b44a1b2d2f090426dbc1db294816b63d7ce424) #### [0.1.23](https://github.com/eea/volto-forests-theme/compare/0.1.22...0.1.23) > 3 December 2021 -- [JENKINS] Fix latest release [`#32`](https://github.com/eea/volto-forests-theme/pull/32) - Develop [`#31`](https://github.com/eea/volto-forests-theme/pull/31) #### [0.1.22](https://github.com/eea/volto-forests-theme/compare/0.1.21...0.1.22) @@ -190,7 +163,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#28`](https://github.com/eea/volto-forests-theme/pull/28) - Header better data fetch cleanup [`6baf20d`](https://github.com/eea/volto-forests-theme/commit/6baf20d3f89471aea06efc59737947e5625afc03) -- Automated release 0.1.22 [`37a94ef`](https://github.com/eea/volto-forests-theme/commit/37a94ef96b428cb037cea8f2be3e7034f92b0746) #### [0.1.21](https://github.com/eea/volto-forests-theme/compare/0.1.20...0.1.21) @@ -198,11 +170,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#27`](https://github.com/eea/volto-forests-theme/pull/27) - redesign homepage desktop [`#6`](https://github.com/eea/volto-forests-theme/pull/6) +- update view on 1200 [`63e1d5a`](https://github.com/eea/volto-forests-theme/commit/63e1d5af7066437e52436b8f7c59e13c0b59768b) - complete redesign of homepage [`889b6a2`](https://github.com/eea/volto-forests-theme/commit/889b6a297dea2f388f0f237ab42866e71d82e577) -- new improvements to header design [`2a3183d`](https://github.com/eea/volto-forests-theme/commit/2a3183d03e58054433634d2420b7cade9ca666cb) -- Automated release 0.1.21 [`af7a9fe`](https://github.com/eea/volto-forests-theme/commit/af7a9fee539ff2d96affb5e6a0cb4e7edda9a3d4) - change colours [`343e1ba`](https://github.com/eea/volto-forests-theme/commit/343e1bafad504ce27481a7773af674f9026efecd) -- update view on 1200 [`63e1d5a`](https://github.com/eea/volto-forests-theme/commit/63e1d5af7066437e52436b8f7c59e13c0b59768b) +- new improvements to header design [`2a3183d`](https://github.com/eea/volto-forests-theme/commit/2a3183d03e58054433634d2420b7cade9ca666cb) #### [0.1.20](https://github.com/eea/volto-forests-theme/compare/0.1.19...0.1.20) @@ -211,25 +182,20 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#26`](https://github.com/eea/volto-forests-theme/pull/26) - Develop [`#25`](https://github.com/eea/volto-forests-theme/pull/25) - update logo, plotly colour scheme and theme colours [`#23`](https://github.com/eea/volto-forests-theme/pull/23) -- Switch request for parent data in Header [`fd89852`](https://github.com/eea/volto-forests-theme/commit/fd8985232d98b0e2c04b36dd9ee31d45ac76ef5d) -- fix [`bd6b8b3`](https://github.com/eea/volto-forests-theme/commit/bd6b8b39b259e9b04d51111adf6df789908232d0) - More styles to slate, added fonts [`40ae6ab`](https://github.com/eea/volto-forests-theme/commit/40ae6ab83ea6bb41e64f57ed6bee2b19af10620d) -- Automated release 0.1.20 [`56a6c7b`](https://github.com/eea/volto-forests-theme/commit/56a6c7b1bff10d94f42e675365a3a1feb0ba102a) - Lint fix [`1d2c554`](https://github.com/eea/volto-forests-theme/commit/1d2c5548adfd01c4f483931f0a211d157cf9bc71) -- Automated release 0.1.20 [`ff7bb55`](https://github.com/eea/volto-forests-theme/commit/ff7bb554ee4a9ff88dba434ecd9d7de3dac8cd43) -- Automated release 0.1.20 [`d7b8b14`](https://github.com/eea/volto-forests-theme/commit/d7b8b14cab98ed66d0be8c2d9d22ae92afd84be8) -- Automated release 0.1.20 [`9665cbb`](https://github.com/eea/volto-forests-theme/commit/9665cbb2bcd9e122d86b4693a23a1519b2b9c733) +- Switch request for parent data in Header [`fd89852`](https://github.com/eea/volto-forests-theme/commit/fd8985232d98b0e2c04b36dd9ee31d45ac76ef5d) +- fix [`bd6b8b3`](https://github.com/eea/volto-forests-theme/commit/bd6b8b39b259e9b04d51111adf6df789908232d0) #### [0.1.19](https://github.com/eea/volto-forests-theme/compare/0.1.18...0.1.19) > 24 November 2021 - Develop [`#24`](https://github.com/eea/volto-forests-theme/pull/24) +- Prettier fix lint [`12bc882`](https://github.com/eea/volto-forests-theme/commit/12bc882f9cf9bca011bcf94f053c5e19914af678) +- Fix styles lint [`af7ed16`](https://github.com/eea/volto-forests-theme/commit/af7ed16718d8c5a60c63db61788563d63533c8f7) - Add more color sets [`9375225`](https://github.com/eea/volto-forests-theme/commit/9375225921d889c5bd191cf35aaf015b560dfaf0) - Refs #142010 - Optimize Volto-addons gitflow pipelines [`d81fb94`](https://github.com/eea/volto-forests-theme/commit/d81fb941ef732c980abdcc4111c8317062f13088) -- Automated release 0.1.19 [`90651bf`](https://github.com/eea/volto-forests-theme/commit/90651bf44c9e98e26a98260a43e9799059651981) -- Fix styles lint [`af7ed16`](https://github.com/eea/volto-forests-theme/commit/af7ed16718d8c5a60c63db61788563d63533c8f7) -- Prettier fix lint [`12bc882`](https://github.com/eea/volto-forests-theme/commit/12bc882f9cf9bca011bcf94f053c5e19914af678) #### [0.1.18](https://github.com/eea/volto-forests-theme/compare/0.1.17...0.1.18) @@ -237,8 +203,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#22`](https://github.com/eea/volto-forests-theme/pull/22) - Add FISE colors in slate styles [`2921654`](https://github.com/eea/volto-forests-theme/commit/2921654debf224c8ffdaf325f3ca3180ee9dc323) -- Automated release 0.1.18 [`0c6c6cd`](https://github.com/eea/volto-forests-theme/commit/0c6c6cd96d0b2f9ea8cef07b5d49168e72198d7d) -- Automated release 0.1.17 [`d01c76c`](https://github.com/eea/volto-forests-theme/commit/d01c76c90ac104493971677454852883e6d8c544) - More limits to Lead nav [`0b5a328`](https://github.com/eea/volto-forests-theme/commit/0b5a328ac6b00ff60f2d4fa894d5cf131f5ce6a2) #### [0.1.17](https://github.com/eea/volto-forests-theme/compare/0.1.16...0.1.17) @@ -252,44 +216,36 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 22 November 2021 - Fill page width & lower limits on Lead Navigation [`#20`](https://github.com/eea/volto-forests-theme/pull/20) -- Automated release 0.1.16 [`24104f2`](https://github.com/eea/volto-forests-theme/commit/24104f270fe0a387ef73b8cbc665440067ce2fce) #### [0.1.15](https://github.com/eea/volto-forests-theme/compare/0.1.14...0.1.15) > 22 November 2021 - Show full page title on truncated text [`#19`](https://github.com/eea/volto-forests-theme/pull/19) -- Automated release 0.1.15 [`2c33a74`](https://github.com/eea/volto-forests-theme/commit/2c33a74d59c5bbacbc62211149f0d456c200acaa) #### [0.1.14](https://github.com/eea/volto-forests-theme/compare/0.1.13...0.1.14) > 19 November 2021 - Lead navigation responsive updates [`#18`](https://github.com/eea/volto-forests-theme/pull/18) -- Lead nav w fixed items & dimensions [`a8c810e`](https://github.com/eea/volto-forests-theme/commit/a8c810efc9f6fa8f73b366750df41236798b6464) - NavigationLead variable items dep on width & fixed widths [`8283528`](https://github.com/eea/volto-forests-theme/commit/82835288bce93dc00f6ebb9f097f6675e4a74fe9) -- Automated release 0.1.14 [`7237db4`](https://github.com/eea/volto-forests-theme/commit/7237db49eb0bd3d6b5852c3709a155626a699999) -- Automated release 0.1.14 [`9ae1776`](https://github.com/eea/volto-forests-theme/commit/9ae1776d84c4123a52eacaaf94b01b633153e9d1) +- Lead nav w fixed items & dimensions [`a8c810e`](https://github.com/eea/volto-forests-theme/commit/a8c810efc9f6fa8f73b366750df41236798b6464) #### [0.1.13](https://github.com/eea/volto-forests-theme/compare/0.1.12...0.1.13) > 18 November 2021 - Lead Image updates [`#17`](https://github.com/eea/volto-forests-theme/pull/17) -- Automated release 0.1.13 [`a5f471d`](https://github.com/eea/volto-forests-theme/commit/a5f471df40cdfbe49a10f58e3476dbe77311ffc9) #### [0.1.12](https://github.com/eea/volto-forests-theme/compare/0.1.11...0.1.12) > 17 November 2021 - standalone slate-inline styles [`#16`](https://github.com/eea/volto-forests-theme/pull/16) +- Update README.md [`0423c59`](https://github.com/eea/volto-forests-theme/commit/0423c591edb17226d7b3c8d4781770f6af7b0463) - use standalone slate-inline stlyes [`53422fe`](https://github.com/eea/volto-forests-theme/commit/53422fe68677953b0c46079c388e912968f18928) -- Automated release 0.1.12 [`974b358`](https://github.com/eea/volto-forests-theme/commit/974b3582afef4e46814d914b243fb61a3fa6861d) - fix anchor color [`332d681`](https://github.com/eea/volto-forests-theme/commit/332d681a6e6683030cf02089aaa49d3fdb07c524) -- Update README.md [`0423c59`](https://github.com/eea/volto-forests-theme/commit/0423c591edb17226d7b3c8d4781770f6af7b0463) - anchor color [`c981adb`](https://github.com/eea/volto-forests-theme/commit/c981adb70b34e526bc573d135c3b7999c1fe485e) -- Add Sonarqube tag using forests-frontend addons list [`6a7f316`](https://github.com/eea/volto-forests-theme/commit/6a7f3168c8e4e20df94f458bd8ff21d509db1dcd) -- Automated release 0.1.12 [`6bd52c0`](https://github.com/eea/volto-forests-theme/commit/6bd52c0e74b6dd2779883cb7b990347cde676240) #### [0.1.11](https://github.com/eea/volto-forests-theme/compare/0.1.10...0.1.11) @@ -298,35 +254,29 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix issue in config [`#15`](https://github.com/eea/volto-forests-theme/pull/15) - fix logo issue and nav block issue [`#10`](https://github.com/eea/volto-forests-theme/pull/10) - Update package.json [`#14`](https://github.com/eea/volto-forests-theme/pull/14) -- also run cypress [`378720d`](https://github.com/eea/volto-forests-theme/commit/378720d0d7e9e3b70dd418ea98f046559fd2c625) -- fix bugs [`553baab`](https://github.com/eea/volto-forests-theme/commit/553baab27881d9b0845b38e8ad2ae92bc602e2cd) -- support runtime vars in addon itself [`29ce50f`](https://github.com/eea/volto-forests-theme/commit/29ce50f8486a3930a47fccd4078607a06f660dd1) -- Automated release 0.1.11 [`1055baa`](https://github.com/eea/volto-forests-theme/commit/1055baaa018a13d9276f855dce2fcd36501ed43c) -- Automated release 0.1.11 [`4567c1e`](https://github.com/eea/volto-forests-theme/commit/4567c1e00ec689e130d91102f923cecb02fff30c) -- cy: more fixes [`0b48880`](https://github.com/eea/volto-forests-theme/commit/0b488801aafaed393a0c3c2ae16d237e9122319d) -- prettier [`07d7ef0`](https://github.com/eea/volto-forests-theme/commit/07d7ef0639c135241196fa844a1e30a3c3ba0ec5) -- Automated release 0.1.11 [`22100a6`](https://github.com/eea/volto-forests-theme/commit/22100a60ad46428681c52d033639104b45357f0d) - fix source formatting color of <a> in slate inline style [`1128f18`](https://github.com/eea/volto-forests-theme/commit/1128f18e7ba439f321100d63d163fb5585e74579) +- cy: more fixes [`0b48880`](https://github.com/eea/volto-forests-theme/commit/0b488801aafaed393a0c3c2ae16d237e9122319d) - fix tests [`5c8d3c1`](https://github.com/eea/volto-forests-theme/commit/5c8d3c1f4bfedba9df337f8a1bd728b224cdf207) +- load addon in config [`c8fd0dc`](https://github.com/eea/volto-forests-theme/commit/c8fd0dc5af9f3433156c14857b54ef68f4b84bd4) - fix config resolving [`dbb965c`](https://github.com/eea/volto-forests-theme/commit/dbb965cd53570b4b16c309f97ed6ad5f1d536597) +- remove volto-addons-forest [`53a0d65`](https://github.com/eea/volto-forests-theme/commit/53a0d65a1b0b5415449633fcaf24bfa85cb361b0) - relative import [`8ccb73b`](https://github.com/eea/volto-forests-theme/commit/8ccb73b44e706a630455765015d5cd23a093987a) +- support runtime vars in addon itself [`29ce50f`](https://github.com/eea/volto-forests-theme/commit/29ce50f8486a3930a47fccd4078607a06f660dd1) - fix cypress [`57a3005`](https://github.com/eea/volto-forests-theme/commit/57a30053c76260f70fe4e99f311c77ae5ca113c1) - add required env vars [`59ae093`](https://github.com/eea/volto-forests-theme/commit/59ae093410487f59cda9561633c416deee0d2216) -- Automated release 0.1.11 [`bf456fc`](https://github.com/eea/volto-forests-theme/commit/bf456fc221d5e3d71422bc058fcc618de68c08b7) -- load addon in config [`c8fd0dc`](https://github.com/eea/volto-forests-theme/commit/c8fd0dc5af9f3433156c14857b54ef68f4b84bd4) -- remove volto-addons-forest [`53a0d65`](https://github.com/eea/volto-forests-theme/commit/53a0d65a1b0b5415449633fcaf24bfa85cb361b0) +- also run cypress [`378720d`](https://github.com/eea/volto-forests-theme/commit/378720d0d7e9e3b70dd418ea98f046559fd2c625) +- fix bugs [`553baab`](https://github.com/eea/volto-forests-theme/commit/553baab27881d9b0845b38e8ad2ae92bc602e2cd) +- prettier [`07d7ef0`](https://github.com/eea/volto-forests-theme/commit/07d7ef0639c135241196fa844a1e30a3c3ba0ec5) #### [0.1.10](https://github.com/eea/volto-forests-theme/compare/0.1.9...0.1.10) > 11 November 2021 - `volto-slate="*"` [`#13`](https://github.com/eea/volto-forests-theme/pull/13) -- Automated release 0.1.9 [`5b2349b`](https://github.com/eea/volto-forests-theme/commit/5b2349b91e2842b0b79b9dcbc4f72fa54cacfded) -- Automated release 0.1.10 [`6eae855`](https://github.com/eea/volto-forests-theme/commit/6eae85525f4ac26fc2ea6c5cff387ec1bdc44c70) -- remove api_path [`99418ac`](https://github.com/eea/volto-forests-theme/commit/99418ac02dfb0adb6af39c5e4a1e64a928070748) -- api_path [`1542048`](https://github.com/eea/volto-forests-theme/commit/1542048c90ee77e9ffc92a87f64856adad981af0) - Update package.json [`e86518b`](https://github.com/eea/volto-forests-theme/commit/e86518b11b3716750eddf3158bc2b5ed7b22c455) - update volto-slate [`7248c0f`](https://github.com/eea/volto-forests-theme/commit/7248c0f0db2916f3a98d2f360e0da462545c49a9) +- remove api_path [`99418ac`](https://github.com/eea/volto-forests-theme/commit/99418ac02dfb0adb6af39c5e4a1e64a928070748) +- api_path [`1542048`](https://github.com/eea/volto-forests-theme/commit/1542048c90ee77e9ffc92a87f64856adad981af0) #### [0.1.9](https://github.com/eea/volto-forests-theme/compare/0.1.8...0.1.9) @@ -339,23 +289,20 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 10 November 2021 - remove duplicate helpers [`#11`](https://github.com/eea/volto-forests-theme/pull/11) -- Automated release 0.1.8 [`bd03df9`](https://github.com/eea/volto-forests-theme/commit/bd03df9748601717f4189e6963e531522f7d6ee8) #### [0.1.7](https://github.com/eea/volto-forests-theme/compare/0.1.6...0.1.7) > 10 November 2021 - LeadNav update [`#9`](https://github.com/eea/volto-forests-theme/pull/9) -- Automated release 0.1.7 [`ce4e2dc`](https://github.com/eea/volto-forests-theme/commit/ce4e2dc85f6be5c5b1f521911d4d121ced70e770) #### [0.1.6](https://github.com/eea/volto-forests-theme/compare/0.1.5...0.1.6) > 9 November 2021 - Develop: hotfix for homepage view wide [`#8`](https://github.com/eea/volto-forests-theme/pull/8) -- update [`70f5181`](https://github.com/eea/volto-forests-theme/commit/70f5181f92b3397788ff0fbf839b71b3ed70e2a9) - use wideview on homepage [`63129c8`](https://github.com/eea/volto-forests-theme/commit/63129c8f2d614507064fbd381fa5922f851769e9) -- Automated release 0.1.6 [`eb8d116`](https://github.com/eea/volto-forests-theme/commit/eb8d11678004f4438433f55245c0f583edb18a83) +- update [`70f5181`](https://github.com/eea/volto-forests-theme/commit/70f5181f92b3397788ff0fbf839b71b3ed70e2a9) #### [0.1.5](https://github.com/eea/volto-forests-theme/compare/0.1.4...0.1.5) @@ -363,7 +310,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#7`](https://github.com/eea/volto-forests-theme/pull/7) - update to volto 14 [`32c2318`](https://github.com/eea/volto-forests-theme/commit/32c231806a553bc06e783d8a8cb8e3576e57babe) -- Automated release 0.1.5 [`b6d2efd`](https://github.com/eea/volto-forests-theme/commit/b6d2efdf27f825549706567fad81b0228f20c523) - fix query params [`7764b3a`](https://github.com/eea/volto-forests-theme/commit/7764b3a46e3b5fafca833f6ec838ac02dc1bee81) #### [0.1.4](https://github.com/eea/volto-forests-theme/compare/0.1.3...0.1.4) @@ -371,13 +317,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 5 November 2021 - Updates on HeaderNavigation & Lead Image [`#5`](https://github.com/eea/volto-forests-theme/pull/5) -- window Dimension hook & mobile improvements to HeaderNavigation [`7b2f299`](https://github.com/eea/volto-forests-theme/commit/7b2f299806ed17a54f4f1c7568e9f1028e82c012) +- lint fix [`25997f2`](https://github.com/eea/volto-forests-theme/commit/25997f2b27dd12b0b946021aed58add10325fc7b) - Use screen width from store rather than hook [`b15911d`](https://github.com/eea/volto-forests-theme/commit/b15911d6e188f5e436ddd8828743137361f4f17b) -- Automated release 0.1.4 [`d97f290`](https://github.com/eea/volto-forests-theme/commit/d97f290a3be902f989bcbfeb07d75eb55a2f6abe) -- window dimension hook cleanup [`6f94af1`](https://github.com/eea/volto-forests-theme/commit/6f94af12cf46f19e06d19a255497a465efb34180) -- Automated release 0.1.4 [`578667d`](https://github.com/eea/volto-forests-theme/commit/578667d24e1f69f00e74195291fab3813f244655) - Hover typo [`90b38c4`](https://github.com/eea/volto-forests-theme/commit/90b38c4b4552849581b193ebafa9e4664c17dded) -- lint fix [`25997f2`](https://github.com/eea/volto-forests-theme/commit/25997f2b27dd12b0b946021aed58add10325fc7b) +- window dimension hook cleanup [`6f94af1`](https://github.com/eea/volto-forests-theme/commit/6f94af12cf46f19e06d19a255497a465efb34180) +- window Dimension hook & mobile improvements to HeaderNavigation [`7b2f299`](https://github.com/eea/volto-forests-theme/commit/7b2f299806ed17a54f4f1c7568e9f1028e82c012) #### [0.1.3](https://github.com/eea/volto-forests-theme/compare/0.1.2...0.1.3) @@ -385,7 +329,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Develop [`#4`](https://github.com/eea/volto-forests-theme/pull/4) - update datablocks [`#3`](https://github.com/eea/volto-forests-theme/pull/3) -- Automated release 0.1.3 [`8fb5dc4`](https://github.com/eea/volto-forests-theme/commit/8fb5dc4571dc3902ad3ef542951bca6682d6e6b1) - update all [`00d048f`](https://github.com/eea/volto-forests-theme/commit/00d048f510949690c053b2e71335293bc4e7166e) - make it general [`edb83c1`](https://github.com/eea/volto-forests-theme/commit/edb83c11d791da06f33a3096129136f378139530) @@ -394,31 +337,27 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). > 3 November 2021 - Header check for data improved & better fix for the text issue [`#2`](https://github.com/eea/volto-forests-theme/pull/2) -- Automated release 0.1.2 [`398cca2`](https://github.com/eea/volto-forests-theme/commit/398cca2c2a87df256f4a5045577648fee0cfa9f5) #### [0.1.1](https://github.com/eea/volto-forests-theme/compare/0.1.0...0.1.1) > 3 November 2021 - Forest theme components [`#1`](https://github.com/eea/volto-forests-theme/pull/1) -- forest theme components and customisations [`5724a62`](https://github.com/eea/volto-forests-theme/commit/5724a62e1e9e7b072214fac200bd52e8b9fd5bc9) -- lint:fix [`7bd7408`](https://github.com/eea/volto-forests-theme/commit/7bd7408525d4f0f1e2872c2177ff5846c8ede434) -- normalise imports and sync components [`ce3dc70`](https://github.com/eea/volto-forests-theme/commit/ce3dc7065a4a29e05b5c1c863e860320cc58e307) -- yarn bootstrap [`bba2bf9`](https://github.com/eea/volto-forests-theme/commit/bba2bf9de053a1631db3aece8466e2aca26e920a) -- normalize imports [`36ce0ce`](https://github.com/eea/volto-forests-theme/commit/36ce0ce4350684f22b0e393610e384e6dab63347) -- add theme packages, lint:fix [`87e437f`](https://github.com/eea/volto-forests-theme/commit/87e437f8fa39f0d77beae424640e7648ce3e464b) -- fix tests [`cc1563c`](https://github.com/eea/volto-forests-theme/commit/cc1563c1e38fe567d983e12cae33780a1554da2b) -- update readme [`1d8a9c2`](https://github.com/eea/volto-forests-theme/commit/1d8a9c24611c5b8fafa165070917e72b12967071) - skip cypress [`876c96d`](https://github.com/eea/volto-forests-theme/commit/876c96d0b5227bebe4c1f6d160b1bc7bc6d64e97) -- Automated release 0.1.1 [`bee7b22`](https://github.com/eea/volto-forests-theme/commit/bee7b224a498deabc92886117619fbc732304399) -- update settings [`5417a84`](https://github.com/eea/volto-forests-theme/commit/5417a84625168f48b9c8af78d9192e770db627c8) -- add packages [`6523575`](https://github.com/eea/volto-forests-theme/commit/6523575f6e3b593d321420803efb17c584c8f2de) -- remove plugin [`5f66b40`](https://github.com/eea/volto-forests-theme/commit/5f66b40221909ac222071abfaacad02c6e4a4fe1) +- fix tests [`cc1563c`](https://github.com/eea/volto-forests-theme/commit/cc1563c1e38fe567d983e12cae33780a1554da2b) +- WIP [`15696de`](https://github.com/eea/volto-forests-theme/commit/15696de3e5062ade0ddf877a8e1dda0a44b0c33a) - fix addons [`0f7220c`](https://github.com/eea/volto-forests-theme/commit/0f7220c687f064655f727541489715de6cccf189) +- remove plugin [`5f66b40`](https://github.com/eea/volto-forests-theme/commit/5f66b40221909ac222071abfaacad02c6e4a4fe1) - add packages [`9cba3d5`](https://github.com/eea/volto-forests-theme/commit/9cba3d5d64817e11ca876087dac632f6d3f901e1) +- lint:fix [`7bd7408`](https://github.com/eea/volto-forests-theme/commit/7bd7408525d4f0f1e2872c2177ff5846c8ede434) +- normalise imports and sync components [`ce3dc70`](https://github.com/eea/volto-forests-theme/commit/ce3dc7065a4a29e05b5c1c863e860320cc58e307) +- update settings [`5417a84`](https://github.com/eea/volto-forests-theme/commit/5417a84625168f48b9c8af78d9192e770db627c8) +- add theme packages, lint:fix [`87e437f`](https://github.com/eea/volto-forests-theme/commit/87e437f8fa39f0d77beae424640e7648ce3e464b) - fix theme [`5ef7c4d`](https://github.com/eea/volto-forests-theme/commit/5ef7c4de21d18c8f0a0bc6529f88466d2fc6ab3d) -- Automated release 0.1.1 [`5bd8347`](https://github.com/eea/volto-forests-theme/commit/5bd83473c8cf9675882072773782e487bb654aa2) -- WIP [`15696de`](https://github.com/eea/volto-forests-theme/commit/15696de3e5062ade0ddf877a8e1dda0a44b0c33a) +- normalize imports [`36ce0ce`](https://github.com/eea/volto-forests-theme/commit/36ce0ce4350684f22b0e393610e384e6dab63347) +- add packages [`6523575`](https://github.com/eea/volto-forests-theme/commit/6523575f6e3b593d321420803efb17c584c8f2de) +- forest theme components and customisations [`5724a62`](https://github.com/eea/volto-forests-theme/commit/5724a62e1e9e7b072214fac200bd52e8b9fd5bc9) +- update readme [`1d8a9c2`](https://github.com/eea/volto-forests-theme/commit/1d8a9c24611c5b8fafa165070917e72b12967071) #### 0.1.0 diff --git a/package.json b/package.json index b2c0e81..f6b79e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-forests-theme", - "version": "0.2.0-beta.0", + "version": "0.2.0", "description": "@eeacms/volto-forests-theme: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team",