From f4c993d004b126f08f16651ab9460546fa9e9cad Mon Sep 17 00:00:00 2001 From: Tiberiu Ichim Date: Thu, 29 Jul 2021 19:11:56 +0300 Subject: [PATCH 1/3] gitignore tweaks --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c589866d..4ff7463b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ videos .env.development.local .env.test.local .env.production.local +*~ From 90c5007fd18b019df0cc42597b4de92b16e1712f Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Thu, 29 Jul 2021 16:15:56 +0000 Subject: [PATCH 2/3] Automated release 1.2.5 --- CHANGELOG.md | 15 ++++++++++++++- package.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b6f73a5..e4b6ea52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +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). +#### [1.2.5](https://github.com/eea/volto-tabs-block/compare/1.2.4...1.2.5) + +- gitignore tweaks [`f4c993d`](https://github.com/eea/volto-tabs-block/commit/f4c993d004b126f08f16651ab9460546fa9e9cad) +- Add Sonarqube tag using frontend addons list [`865906a`](https://github.com/eea/volto-tabs-block/commit/865906a0deb261d44cc23e26bfd2d1dd0e319640) +- Add Sonarqube tag using frontend addons list [`5383861`](https://github.com/eea/volto-tabs-block/commit/538386100adbc868e693c1c2a5ba13461307ffee) +- Style update [`323aaaf`](https://github.com/eea/volto-tabs-block/commit/323aaafcad01d8fdf0e713a1fc254ae9fe319f43) +- Fix 'scroll to' feature on carousel [`16c6a08`](https://github.com/eea/volto-tabs-block/commit/16c6a08f6db687542ea38e07a92b265e592f6173) +- Better accesibility [`3511611`](https://github.com/eea/volto-tabs-block/commit/351161197270a4807f01d85a7055cbaadae72f8e) +- Updated Jenkins dependencies [`24471fd`](https://github.com/eea/volto-tabs-block/commit/24471fd7c678d04f244b132f13b4c655838f4e94) +- Add jest configuration [`c01b021`](https://github.com/eea/volto-tabs-block/commit/c01b0213bcb4b51408b6e3c196b2dcfa086377a9) + #### [1.2.4](https://github.com/eea/volto-tabs-block/compare/1.2.3...1.2.4) +> 27 May 2021 + +- Cypress coverage [`#8`](https://github.com/eea/volto-tabs-block/pull/8) - [JENKINS] - Fix stylelint [`2319baa`](https://github.com/eea/volto-tabs-block/commit/2319baa8258828cd3847715779bc21d472bd7677) -- Cypress coverage [`5bb3732`](https://github.com/eea/volto-tabs-block/commit/5bb3732b12f9ebf333577bf810059bf12a41ea25) - Added z-index [`5aa8221`](https://github.com/eea/volto-tabs-block/commit/5aa8221d20c02e34788571d9231e73431c1043fe) #### [1.2.3](https://github.com/eea/volto-tabs-block/compare/1.2.2...1.2.3) diff --git a/package.json b/package.json index 79de2709..97234538 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-tabs-block", - "version": "1.2.4", + "version": "1.2.5", "description": "volto-tabs-block: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 84aeff04a980076f54687c546691d37b6e790478 Mon Sep 17 00:00:00 2001 From: Tiberiu Ichim Date: Thu, 29 Jul 2021 19:22:16 +0300 Subject: [PATCH 3/3] Move less import in View instead of Edit --- src/components/Edit.jsx | 2 -- src/components/View.jsx | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Edit.jsx b/src/components/Edit.jsx index 98c0d7c2..130143a0 100644 --- a/src/components/Edit.jsx +++ b/src/components/Edit.jsx @@ -13,8 +13,6 @@ import cx from 'classnames'; import config from '@plone/volto/registry'; -import '@eeacms/volto-tabs-block/less/tabs-block.less'; - const Edit = (props) => { const { onChangeBlock } = props; const { data = {}, block = null } = props; diff --git a/src/components/View.jsx b/src/components/View.jsx index ebc07e0e..5ce86c8b 100644 --- a/src/components/View.jsx +++ b/src/components/View.jsx @@ -6,6 +6,8 @@ import cx from 'classnames'; import config from '@plone/volto/registry'; +import '@eeacms/volto-tabs-block/less/tabs-block.less'; + const View = (props) => { const view = React.useRef(null); const { data = {}, uiContainer = '' } = props;