From 2b44796cbe0a686a10c78a906c4ad0550ef83d29 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Tue, 20 Sep 2022 11:59:52 +0300 Subject: [PATCH 1/6] Use the new design for StyleMenu --- src/editor/plugins/StyleMenu/StyleMenu.jsx | 323 +++++++-------------- src/editor/plugins/StyleMenu/index.js | 47 +-- src/editor/plugins/StyleMenu/style.css | 14 + src/editor/plugins/StyleMenu/utils.js | 30 +- 4 files changed, 147 insertions(+), 267 deletions(-) diff --git a/src/editor/plugins/StyleMenu/StyleMenu.jsx b/src/editor/plugins/StyleMenu/StyleMenu.jsx index 95d9c134..c171cb3a 100644 --- a/src/editor/plugins/StyleMenu/StyleMenu.jsx +++ b/src/editor/plugins/StyleMenu/StyleMenu.jsx @@ -1,267 +1,148 @@ -import React, { useState } from 'react'; -import { useSlate } from 'slate-react'; -import loadable from '@loadable/component'; +import React from 'react'; +import { ReactEditor, useSlate } from 'slate-react'; +import { Dropdown } from 'semantic-ui-react'; import { useIntl, defineMessages } from 'react-intl'; +import cx from 'classnames'; import { isBlockStyleActive, isInlineStyleActive, toggleStyle } from './utils'; import config from '@plone/volto/registry'; - -const Select = loadable(() => import('react-select')); +import { ToolbarButton } from 'volto-slate/editor/ui'; +import paintSVG from '@plone/volto/icons/paint.svg'; const messages = defineMessages({ - allStylesApplied: { - id: 'All Styles Applied', - defaultMessage: 'All Styles Applied', - }, - noStyle: { - id: 'No Style', - defaultMessage: 'No Style', - }, - fontStyle: { - id: 'Font Style', - defaultMessage: 'Font Style', + inlineStyle: { + id: 'Inline Style', + defaultMessage: 'Inline Style', }, paragraphStyle: { id: 'Paragraph Style', defaultMessage: 'Paragraph Style', }, + additionalStyles: { + id: 'Additional Styles', + defaultMessage: 'Additional Styles', + }, }); -// const brownColor = '#826A6A'; +const StyleMenuButton = ({ icon, active, ...props }) => ( + +); -const selectStyles = { - valueContainer: (provided, state) => { - return { - ...provided, - padding: '0px', - paddingLeft: '0px', - paddingTop: '0px', - paddingRight: '0px', - paddingDown: '0px', - fontSize: '1rem', - position: 'static', - }; - }, - input: (provided, state) => { - return { - ...provided, - display: 'none', - }; - }, - dropdownIndicator: (provided, state) => { - return { - ...provided, - padding: '0px', - paddingLeft: '0px', - paddingTop: '0px', - paddingRight: '0px', - paddingDown: '0px', - }; - }, - indicatorsContainer: (provided, state) => { - return { - ...provided, - padding: '0px', - paddingLeft: '0px', - paddingTop: '0px', - paddingRight: '0px', - paddingDown: '0px', - }; - }, - clearIndicator: (provided, state) => { - return { - ...provided, - padding: '0px', - paddingLeft: '0px', - paddingTop: '0px', - paddingRight: '0px', - paddingDown: '0px', - }; - }, - control: (provided, state) => { - return { - ...provided, - minHeight: 'auto', - borderWidth: 'unset', - cursor: 'pointer', - marginTop: '0.25rem', - // borderColor: state.isFocused ? brownColor : '#f3f3f3', - // boxShadow: 'unset', - }; - }, - container: (provided, state) => { - return { - ...provided, - marginLeft: '3px', - width: '15rem', - // backgroundColor: state.isFocused ? '#f3f3f3' : 'unset', - }; - }, - singleValue: (provided, state) => { - return { - paddingLeft: '3px', - fontSize: '1rem', - // color: brownColor, - }; - }, - option: (provided, state) => { - return { - ...provided, - fontSize: '1rem', - cursor: 'pointer', - // color: state.isSelected ? 'white' : brownColor, - }; - }, - noOptionsMessage: (provided, state) => { - return { - ...provided, - fontSize: '1rem', - }; - }, - group: (provided, state) => { - return { - ...provided, - fontSize: '1rem', - }; - }, -}; - -const StylingsButton = (props) => { +const StylingsButton = () => { const editor = useSlate(); const intl = useIntl(); - const [open, setOpen] = useState(false); - // Converting the settings to a format that is required by react-select. - const rawOpts = [ + // Converting the settings to a format that is required by dropdowns. + const inlineOpts = [ + { + text: intl.formatMessage(messages.inlineStyle), + disabled: false, + selected: false, + style: { opacity: 0.45 }, + onClick: (event) => event.preventDefault(), + }, ...config.settings.slate.styleMenu.inlineStyles.map((def) => { - return { value: def.cssClass, label: def.label, isBlock: false }; - }), - ...config.settings.slate.styleMenu.blockStyles.map((def) => { - return { value: def.cssClass, label: def.label, isBlock: true }; + return { + value: def.cssClass, + text: def.label, + icon: def.icon, + isBlock: false, + }; }), ]; - - // TODO: i18n for the two strings used below - const opts = [ - { - label: intl.formatMessage(messages.paragraphStyle), - options: rawOpts.filter((x) => x.isBlock), - }, + const blockOpts = [ { - label: intl.formatMessage(messages.fontStyle), - options: rawOpts.filter((x) => !x.isBlock), + text: intl.formatMessage(messages.paragraphStyle), + disabled: false, + selected: false, + style: { opacity: 0.45 }, + onClick: (event) => event.preventDefault(), }, + ...config.settings.slate.styleMenu.blockStyles.map((def) => { + return { + value: def.cssClass, + text: def.label, + icon: def.icon, + isBlock: true, + }; + }), ]; // Calculating the initial selection. const toSelect = []; // block styles - for (const val of opts[0].options) { + for (const val of blockOpts) { const ia = isBlockStyleActive(editor, val.value); if (ia) { toSelect.push(val); } } // inline styles - for (const val of opts[1].options) { + for (const val of inlineOpts) { const ia = isInlineStyleActive(editor, val.value); if (ia) { toSelect.push(val); } } - return rawOpts.length > 0 ? ( - + })} + + ) : ( '' ); diff --git a/src/editor/plugins/StyleMenu/index.js b/src/editor/plugins/StyleMenu/index.js index 61db931f..f3be4c39 100644 --- a/src/editor/plugins/StyleMenu/index.js +++ b/src/editor/plugins/StyleMenu/index.js @@ -1,33 +1,40 @@ import React from 'react'; import StyleMenu from './StyleMenu'; import './style.css'; +import { Icon } from '@plone/volto/components'; +import paintSVG from '@plone/volto/icons/paint.svg'; export default function install(config) { const { slate } = config.settings; slate.buttons.styleMenu = (props) => ; - slate.toolbarButtons = [...(slate.toolbarButtons || []), 'styleMenu']; - slate.expandedToolbarButtons = [ - ...(slate.expandedToolbarButtons || []), - 'styleMenu', + + slate.toolbarButtons.push('styleMenu'); + slate.expandedToolbarButtons.push('styleMenu'); + + /* The slate Menu configuration in an addon */ + + slate.styleMenu = config.settings.slate.styleMenu || {}; + slate.styleMenu.inlineStyles = [ + { + cssClass: 'cool-inline-text', + label: 'Cool Inline Text', + icon: (props) => , + }, + ]; + slate.styleMenu.blockStyles = [ + { + cssClass: 'underline-block-text', + label: 'Cool Block Text', + icon: (props) => , + }, ]; - // The style menu definitions are set in the arrays that follow (from any - // addon). Examples: - // config.settings.slate.styleMenu.inlineStyles = [ - // ...config.settings.slate.styleMenu.inlineStyles, - // { cssClass: 'cool-inline-text', label: 'Cool Inline Text' }, - // { cssClass: 'red-inline-text', label: 'Red Inline Text' }, - // ]; - // config.settings.slate.styleMenu.blockStyles = [ - // ...config.settings.slate.styleMenu.blockStyles, - // { cssClass: 'green-block-text', label: 'Green Text' }, - // { cssClass: 'underline-block-text', label: 'Underline Text' }, - // ]; - slate.styleMenu = { - inlineStyles: [], - blockStyles: [], - }; + // slate.styleMenu = { + // inlineStyles: [], + // blockStyles: [], + // //themeColors = { primary: 'red' }; + // }; return config; } diff --git a/src/editor/plugins/StyleMenu/style.css b/src/editor/plugins/StyleMenu/style.css index 09a02f8d..6c2e90c9 100644 --- a/src/editor/plugins/StyleMenu/style.css +++ b/src/editor/plugins/StyleMenu/style.css @@ -1,3 +1,5 @@ +/* Demo styles */ + .green-block-text { color: green; } @@ -14,3 +16,15 @@ .red-inline-text { color: red; } + +.style-menu.ui.dropdown .menu .item { + user-select: none !important; +} + +.style-menu.ui.dropdown .menu .active { + z-index: 1; + background: #68778d !important; + box-shadow: none; + color: #ffffff !important; + font-weight: 300 !important; +} diff --git a/src/editor/plugins/StyleMenu/utils.js b/src/editor/plugins/StyleMenu/utils.js index f633dc06..95c89e22 100644 --- a/src/editor/plugins/StyleMenu/utils.js +++ b/src/editor/plugins/StyleMenu/utils.js @@ -12,26 +12,10 @@ import config from '@plone/volto/registry'; * is not requested. */ export const toggleStyle = (editor, { cssClass, isBlock, isRequested }) => { - const isActive = - isBlockStyleActive(editor, cssClass) || - isInlineStyleActive(editor, cssClass); - - if (isRequested && isActive) { - // nothing to do - } else if (isRequested && !isActive) { - if (isBlock && !isBlockStyleActive(editor, cssClass)) { - toggleBlockStyle(editor, cssClass); - } else if (!isBlock && !isInlineStyleActive(editor, cssClass)) { - toggleInlineStyle(editor, cssClass); - } - } else if (!isRequested && isActive) { - if (isBlock && isBlockStyleActive(editor, cssClass)) { - toggleBlockStyle(editor, cssClass); - } else if (!isBlock && isInlineStyleActive(editor, cssClass)) { - toggleInlineStyle(editor, cssClass); - } - } else if (!isRequested && !isActive) { - // nothing to do + if (isBlock) { + toggleBlockStyle(editor, cssClass); + } else { + toggleInlineStyle(editor, cssClass); } }; @@ -126,12 +110,6 @@ export const internalToggleInlineStyle = (editor, style) => { * block */ export const toggleBlockStyleAsListItem = (editor, style) => { - const { slate } = config.settings; - Transforms.unwrapNodes(editor, { - match: (n) => slate.listTypes.includes(n.type), - split: true, - }); - toggleBlockStyleInSelection(editor, style); }; From 9e64b708ccfc9bafc30cd3eac19753ad70b1e7f8 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Tue, 20 Sep 2022 09:47:27 +0000 Subject: [PATCH 2/6] Automated release 6.3.1 --- CHANGELOG.md | 3574 +++++++++++++++++++++++--------------------------- package.json | 2 +- 2 files changed, 1635 insertions(+), 1941 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7661cffe..319b5085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,1981 +4,1675 @@ 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). -#### [6.3.0](https://github.com/eea/volto-slate/compare/6.2.2...6.3.0) +### [6.3.1](https://github.com/eea/volto-slate/compare/6.3.0...6.3.1) - 20 September 2022 -- Add clear formatting button to the toolbar. [`#246`](https://github.com/eea/volto-slate/pull/246) -- Release 6.3.0 [`b00265f`](https://github.com/eea/volto-slate/commit/b00265fae96cb9dd81e9cb1fbbd2ec11493a623b) +#### :hammer_and_wrench: Others -#### [6.2.2](https://github.com/eea/volto-slate/compare/6.2.1...6.2.2) +- Use the new design for StyleMenu [Miu Razvan - [`2b44796`](https://github.com/eea/volto-slate/commit/2b44796cbe0a686a10c78a906c4ad0550ef83d29)] +### [6.3.0](https://github.com/eea/volto-slate/compare/6.2.2...6.3.0) - 26 August 2022 -> 30 June 2022 +#### :hammer_and_wrench: Others +- Release 6.3.0 [Alin Voinea - [`b00265f`](https://github.com/eea/volto-slate/commit/b00265fae96cb9dd81e9cb1fbbd2ec11493a623b)] +### [6.2.2](https://github.com/eea/volto-slate/compare/6.2.1...6.2.2) - 30 June 2022 -#### [6.2.1](https://github.com/eea/volto-slate/compare/6.2.0...6.2.1) +### [6.2.1](https://github.com/eea/volto-slate/compare/6.2.0...6.2.1) - 30 June 2022 -> 30 June 2022 +#### :hammer_and_wrench: Others -- Fix undo/redo on Title & Description blocks [`#244`](https://github.com/eea/volto-slate/pull/244) +- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`748cfcc`](https://github.com/eea/volto-slate/commit/748cfcc1ba641b2374d59d26e77d39754a4f31f2)] +### [6.2.0](https://github.com/eea/volto-slate/compare/6.1.0...6.2.0) - 8 June 2022 -#### [6.2.0](https://github.com/eea/volto-slate/compare/6.1.0...6.2.0) +#### :hammer_and_wrench: Others -> 8 June 2022 +- Release 6.2.0 [Alin Voinea - [`ea3ba38`](https://github.com/eea/volto-slate/commit/ea3ba3857dcc7ae42340750c5965440935f14ab6)] +### [6.1.0](https://github.com/eea/volto-slate/compare/6.0.1...6.1.0) - 26 May 2022 -- fix(slate): BlockChooser Icon [`#243`](https://github.com/eea/volto-slate/pull/243) -- Release 6.2.0 [`ea3ba38`](https://github.com/eea/volto-slate/commit/ea3ba3857dcc7ae42340750c5965440935f14ab6) +#### :hammer_and_wrench: Others -#### [6.1.0](https://github.com/eea/volto-slate/compare/6.0.1...6.1.0) +- i18n: German [Alin Voinea - [`92fbba3`](https://github.com/eea/volto-slate/commit/92fbba3a6a592f637e2df7c741bb416270c7a89d)] +- i18n [Alin Voinea - [`915de56`](https://github.com/eea/volto-slate/commit/915de566855de4e3d3fb1cf335b9cdb3e5866f5e)] +- Release 6.1.0 [Alin Voinea - [`af20f4f`](https://github.com/eea/volto-slate/commit/af20f4fe6b988a7caf8aa403524882a5056d6c71)] +- Roll back table variations -> add responsive toggle instead [Miu Razvan - [`be2e145`](https://github.com/eea/volto-slate/commit/be2e145ea750bd0f271d9d8f1e7850f148d73bf0)] +- Add table type for unit tests [Miu Razvan - [`d4d0823`](https://github.com/eea/volto-slate/commit/d4d0823314658cbd1635a0c30c35b968a05386e3)] +### [6.0.1](https://github.com/eea/volto-slate/compare/6.0.0...6.0.1) - 20 May 2022 -> 26 May 2022 +## [6.0.0](https://github.com/eea/volto-slate/compare/5.4.1...6.0.0) - 17 May 2022 -- Add responsive table variation [`#242`](https://github.com/eea/volto-slate/pull/242) -- i18n: German [`92fbba3`](https://github.com/eea/volto-slate/commit/92fbba3a6a592f637e2df7c741bb416270c7a89d) -- i18n [`915de56`](https://github.com/eea/volto-slate/commit/915de566855de4e3d3fb1cf335b9cdb3e5866f5e) -- Release 6.1.0 [`af20f4f`](https://github.com/eea/volto-slate/commit/af20f4fe6b988a7caf8aa403524882a5056d6c71) -- Roll back table variations -> add responsive toggle instead [`be2e145`](https://github.com/eea/volto-slate/commit/be2e145ea750bd0f271d9d8f1e7850f148d73bf0) -- Add table type for unit tests [`d4d0823`](https://github.com/eea/volto-slate/commit/d4d0823314658cbd1635a0c30c35b968a05386e3) +#### :hammer_and_wrench: Others -#### [6.0.1](https://github.com/eea/volto-slate/compare/6.0.0...6.0.1) +- Release 6.0.0 [Alin Voinea - [`de78cb5`](https://github.com/eea/volto-slate/commit/de78cb5495e0a8ea262ff45b05b87f900dccf5eb)] +### [5.4.1](https://github.com/eea/volto-slate/compare/5.4.0...5.4.1) - 19 March 2022 -> 20 May 2022 +#### :hammer_and_wrench: Others -- fix(SlateEditor): Cannot read property length of undefined [`#241`](https://github.com/eea/volto-slate/pull/241) +- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`899d59a`](https://github.com/eea/volto-slate/commit/899d59a350fe2c5ddb15192689df472725ad1ffa)] +### [5.4.0](https://github.com/eea/volto-slate/compare/5.3.5...5.4.0) - 15 March 2022 -### [6.0.0](https://github.com/eea/volto-slate/compare/5.4.1...6.0.0) +### [5.3.5](https://github.com/eea/volto-slate/compare/5.3.4...5.3.5) - 8 March 2022 -> 17 May 2022 +#### :hammer_and_wrench: Others -- Add poweruser menu (#234) [`#239`](https://github.com/eea/volto-slate/pull/239) -- Use block data form [`#240`](https://github.com/eea/volto-slate/pull/240) -- Add poweruser menu [`#234`](https://github.com/eea/volto-slate/pull/234) -- Release 6.0.0 [`de78cb5`](https://github.com/eea/volto-slate/commit/de78cb5495e0a8ea262ff45b05b87f900dccf5eb) +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`ec96dad`](https://github.com/eea/volto-slate/commit/ec96dad4b78750a4ca2414515dfe211746dd2273)] +### [5.3.4](https://github.com/eea/volto-slate/compare/5.3.3...5.3.4) - 17 February 2022 -#### [5.4.1](https://github.com/eea/volto-slate/compare/5.4.0...5.4.1) +### [5.3.3](https://github.com/eea/volto-slate/compare/5.3.2...5.3.3) - 5 January 2022 -> 19 March 2022 +### [5.3.2](https://github.com/eea/volto-slate/compare/5.3.1...5.3.2) - 4 January 2022 + +#### :hammer_and_wrench: Others + +- added a cypress for above scenario [nileshgulia1 - [`9e748fa`](https://github.com/eea/volto-slate/commit/9e748fad9a5e2488917873e6307981b4427989e1)] +### [5.3.1](https://github.com/eea/volto-slate/compare/5.3.0...5.3.1) - 3 January 2022 + +### [5.3.0](https://github.com/eea/volto-slate/compare/5.2.1...5.3.0) - 30 December 2021 + +#### :hammer_and_wrench: Others + +- Release 5.3.0 [Alin Voinea - [`f9d86a6`](https://github.com/eea/volto-slate/commit/f9d86a6b08b156fafa2df4f02652bb6931a993e8)] +- cometics on cypress [nileshgulia1 - [`e65bd94`](https://github.com/eea/volto-slate/commit/e65bd941d112a347fc7526abb23ecf538858fb74)] +- fix import [nileshgulia1 - [`b6dc581`](https://github.com/eea/volto-slate/commit/b6dc581d05aaf8bb46e960d3b309eabe56ef5ca2)] +- use block checker from slate [nileshgulia1 - [`a274290`](https://github.com/eea/volto-slate/commit/a274290ea19e03cc7d532c81a7136d83c3927037)] +- fix cypress for table [nileshgulia1 - [`e538859`](https://github.com/eea/volto-slate/commit/e5388590f655cabc8bec33bc4b220c111b354dc1)] +- update conditional [nileshgulia1 - [`db50175`](https://github.com/eea/volto-slate/commit/db5017561a7bba7a868d64b6d05e826b10babfb9)] +- also exclude top level block elements [nileshgulia1 - [`451807b`](https://github.com/eea/volto-slate/commit/451807b87f5aa06b118ca81c6f7962288cd0734b)] +- WIP lint [nileshgulia1 - [`498b600`](https://github.com/eea/volto-slate/commit/498b60031a5fb151f45481e8ca8a75f8a7fce63c)] +- allow block elements to pass through normalizer [nileshgulia1 - [`6ecadcf`](https://github.com/eea/volto-slate/commit/6ecadcf864c8b3e72f176fb03c36cf0369cd3718)] +- match on upper level [nileshgulia1 - [`331ba78`](https://github.com/eea/volto-slate/commit/331ba78372fe5d4deee9b6f694366c96b31d0ef3)] +- cy: paste formatted html texts [nileshgulia1 - [`c10029f`](https://github.com/eea/volto-slate/commit/c10029f62d0e6dd68edf5d4bad6498703df0c358)] +- stylelint JENKINS [nileshgulia1 - [`b895b11`](https://github.com/eea/volto-slate/commit/b895b1132535d73bb7cb78588c7f2e408ec67705)] +- fix empty child in deserialize itself [nileshgulia1 - [`e8ee61d`](https://github.com/eea/volto-slate/commit/e8ee61d888f525ce2ba5a7113457f270ddd78cf4)] +- WIP [nileshgulia1 - [`49defd4`](https://github.com/eea/volto-slate/commit/49defd493d8db60ba9a2f983b5557e13c0e36220)] +- do not match block elements [nileshgulia1 - [`daadd47`](https://github.com/eea/volto-slate/commit/daadd47546922454c2fa4849dcb8561f9ebc116f)] +- JENKINS:don't run stylelint [nileshgulia1 - [`d4ec036`](https://github.com/eea/volto-slate/commit/d4ec036d0be21788b5abb57deb258b7ea3c4b67c)] +- stylelint:remove comment [nileshgulia1 - [`fd5b4ea`](https://github.com/eea/volto-slate/commit/fd5b4ea2068470e08fd26cf801a413df9ed5e6ca)] +- remove isInline [nileshgulia1 - [`e1df75e`](https://github.com/eea/volto-slate/commit/e1df75efa3b6f6ecfa1eae58e2b1a5fd416e6229)] +- try to use proper match and avoid loop [nileshgulia1 - [`9e4e3bd`](https://github.com/eea/volto-slate/commit/9e4e3bd056996116092973a5672fee606eb7eaf7)] +- remove undefined childs [nileshgulia1 - [`242bdb4`](https://github.com/eea/volto-slate/commit/242bdb43de2440be9b055892c38ccdc1f888bfc9)] +- fix lint [nileshgulia1 - [`78ed980`](https://github.com/eea/volto-slate/commit/78ed98002f432dd76c1c835ef73c11f6938f6c1d)] +- always add empty child into Editor while normalizing [nileshgulia1 - [`7ee309b`](https://github.com/eea/volto-slate/commit/7ee309bac5164567714474002f9364872c7641e2)] +- filter empy nodes [nileshgulia1 - [`974daaa`](https://github.com/eea/volto-slate/commit/974daaace39d79cd7b9528e8b8e4503beaba73c8)] +- resolve comments [nileshgulia1 - [`d761517`](https://github.com/eea/volto-slate/commit/d76151755c2936ded5244c0e731efb9331278dfd)] +- Transform only text nodes [nileshgulia1 - [`82f5e61`](https://github.com/eea/volto-slate/commit/82f5e618d9d56d8e6055c7a1231720ee048ad76b)] +- cypress: paste external html content [nileshgulia1 - [`acb1384`](https://github.com/eea/volto-slate/commit/acb13849f0d35b92f786effd65bf405fcb09ca4b)] +### [5.2.1](https://github.com/eea/volto-slate/compare/5.2.0...5.2.1) - 22 December 2021 + +### [5.2.0](https://github.com/eea/volto-slate/compare/5.1.3...5.2.0) - 17 December 2021 -- chore(cypress): Fix paste html [`#237`](https://github.com/eea/volto-slate/pull/237) +#### :hammer_and_wrench: Others -#### [5.4.0](https://github.com/eea/volto-slate/compare/5.3.5...5.4.0) +- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`57f76bc`](https://github.com/eea/volto-slate/commit/57f76bc2c69075201a1b60d2231789df99019247)] +- Add SonarQube badges [Alin Voinea - [`a929620`](https://github.com/eea/volto-slate/commit/a929620de3e8f36af0b1d2a5a82d3831c194819f)] +- Release 5.2.0 [Alin Voinea - [`e941f3d`](https://github.com/eea/volto-slate/commit/e941f3d987d62fbffce095b013561629614148a1)] +- Don't crash in trim check [Tiberiu Ichim - [`db2cbf9`](https://github.com/eea/volto-slate/commit/db2cbf91f0fe8956eae786bfe187565b7226c302)] +- finalise pasting and deleting of table [nileshgulia1 - [`65a4062`](https://github.com/eea/volto-slate/commit/65a40629985ef9e2ae50dc776927d139db860dd3)] +- WIP [nileshgulia1 - [`2dc2d30`](https://github.com/eea/volto-slate/commit/2dc2d3047f70dcb43de0e8c0c4cee5d8ea2e2b90)] +- WIP: cypress [nileshgulia1 - [`23710e1`](https://github.com/eea/volto-slate/commit/23710e12d322708adf225b728158041ec96dcf1f)] +- update readme [nileshgulia1 - [`d88a70f`](https://github.com/eea/volto-slate/commit/d88a70f9f7548cdbd0dee8e68a5d51550dbd637a)] +- cypress:paste ext images, docs update [nileshgulia1 - [`fd7f4c3`](https://github.com/eea/volto-slate/commit/fd7f4c3114ece2449785ea8ece987e793a28d9eb)] +- Add more buttons to the Table contextual toolbar [Silviu Bogan - [`d048c34`](https://github.com/eea/volto-slate/commit/d048c347b2e9f3509c8a5d37166f542350e96389)] +- Extend Toolbar instead of creating ElementToolbar [Silviu Bogan - [`6f13b37`](https://github.com/eea/volto-slate/commit/6f13b37935840ecb2515ef3ca33a8ecbbec8edb9)] +- Remove useless commented line [Silviu Bogan - [`f02a9e3`](https://github.com/eea/volto-slate/commit/f02a9e3aca19b5f7f0d39ec6a2e3040fc65a3591)] +- Multiple Description blocks on the same page update each other [Silviu Bogan - [`44ec992`](https://github.com/eea/volto-slate/commit/44ec9923717b99516c2899fd26f51e8a860e14e0)] +- Make it work with new react-slate method of getting the value [Tiberiu Ichim - [`9256b59`](https://github.com/eea/volto-slate/commit/9256b5904617e700f78ccde2e92a1d042461f28c)] +- Split text block editor components in separate modules [Tiberiu Ichim - [`0888e61`](https://github.com/eea/volto-slate/commit/0888e6177254562c501847c151e946b6c8f10537)] +- Revert to older version of slate-react [Silviu Bogan - [`044fadf`](https://github.com/eea/volto-slate/commit/044fadf592dc71a5756e82a94a98df0ba0b8c7ac)] +- Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`33bc1ed`](https://github.com/eea/volto-slate/commit/33bc1edeb63ee0d0e6fb8fa6c170d11ed4922a3d)] +### [5.1.3](https://github.com/eea/volto-slate/compare/5.1.2...5.1.3) - 5 December 2021 -> 15 March 2022 +### [5.1.2](https://github.com/eea/volto-slate/compare/5.1.1...5.1.2) - 30 November 2021 -- New features on table block (#235) [`#236`](https://github.com/eea/volto-slate/pull/236) -- New features on table block [`#235`](https://github.com/eea/volto-slate/pull/235) +### [5.1.1](https://github.com/eea/volto-slate/compare/5.1.0...5.1.1) - 18 November 2021 -#### [5.3.5](https://github.com/eea/volto-slate/compare/5.3.4...5.3.5) +### [5.1.0](https://github.com/eea/volto-slate/compare/5.0.0...5.1.0) - 18 November 2021 -> 8 March 2022 +#### :hammer_and_wrench: Others -- Develop [`#232`](https://github.com/eea/volto-slate/pull/232) -- Do not override the whole Title block, but only the view/edit components. [`#231`](https://github.com/eea/volto-slate/pull/231) -- Do not override the whole Title block, but only the view/edit components. (#231) [`#230`](https://github.com/eea/volto-slate/issues/230) +- Update tests snapshots [Alin Voinea - [`dafcef0`](https://github.com/eea/volto-slate/commit/dafcef0f0337e043bc1a821c3c18641a9e3a11f8)] +- Remove obsolte resolutions [Alin Voinea - [`3738673`](https://github.com/eea/volto-slate/commit/37386734e9942d3b835f0265a2a48ccda3cd4b91)] +- Release 5.1.0 [Alin Voinea - [`140c219`](https://github.com/eea/volto-slate/commit/140c219ba9036531644474546f1fe5a461713886)] +- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`b5522f3`](https://github.com/eea/volto-slate/commit/b5522f3845de785cafe76c35e2497e539d1c04d4)] +## [5.0.0](https://github.com/eea/volto-slate/compare/4.2.1...5.0.0) - 5 November 2021 -#### [5.3.4](https://github.com/eea/volto-slate/compare/5.3.3...5.3.4) +#### :bug: Bug Fixes -> 17 February 2022 +- fix: buggy selection after block merge w/ Backspace [Silviu Bogan - [`24736f6`](https://github.com/eea/volto-slate/commit/24736f649c7a1fa732e466c6e7c816eb82d41f7b)] +- fix: empty 'p' in the block merged w/ Backspace [Silviu Bogan - [`7e7ff3c`](https://github.com/eea/volto-slate/commit/7e7ff3ca39892acd8b34f112a33c49c4c9083c54)] +- fix: HTML paste of inline Slate element in `ul` created separate Volto block [Silviu Bogan - [`e385060`](https://github.com/eea/volto-slate/commit/e3850603304e07fd60915de62ed1ef1911965fa4)] +- fix: merging 2 Volto-Slate blocks w/ backspace crashes Volto [Silviu Bogan - [`d839172`](https://github.com/eea/volto-slate/commit/d83917280f3be60b4348cfb9ed02e7f578714bb9)] + +#### :hammer_and_wrench: Others + +- lint: remove unused variable [Silviu Bogan - [`49b0929`](https://github.com/eea/volto-slate/commit/49b09292665d4c52e854a704c555f42fed4b7271)] +- removing the sidebar from detached editor [iFlameing - [`5e959dc`](https://github.com/eea/volto-slate/commit/5e959dc83a4ef4e979b2aedd4647d9a7eac44f5d)] +- Now you can disable the sidebar of detached editor [iFlameing - [`f6cd8b5`](https://github.com/eea/volto-slate/commit/f6cd8b5758702e75431ef5b7cbf8cc531a388c64)] +- Remove dead import [Silviu Bogan - [`6cd6d80`](https://github.com/eea/volto-slate/commit/6cd6d80e928d312654672648a850c08e83aec5d6)] +- Remove dead code [Silviu Bogan - [`e5112f8`](https://github.com/eea/volto-slate/commit/e5112f84cddbbc66cd506bcd3366cf2c295ccb49)] +- Don't create 'li' when merging blocks w/ Backspace [Silviu Bogan - [`5d9e5cb`](https://github.com/eea/volto-slate/commit/5d9e5cbfb0509130aee36bbf3fc5eedfb8e8d065)] +- Correct selection after blocks merged w/ Backspace [Silviu Bogan - [`01778b9`](https://github.com/eea/volto-slate/commit/01778b92b8f24434148925e75cb7d77bdcc24017)] +- Better merge of blocks with Backspace [Silviu Bogan - [`82f252e`](https://github.com/eea/volto-slate/commit/82f252ef0cfcbb545fceabc5a07749598c9c9729)] +- WIP on joining bold paragraph with previous block [Silviu Bogan - [`f765120`](https://github.com/eea/volto-slate/commit/f765120c73fa54b3ba6efe6dcbc970c2c68b7226)] +- Solve ESLint issues [Silviu Bogan - [`64f53a4`](https://github.com/eea/volto-slate/commit/64f53a43070800db0b0063092466d300c12dbaae)] +- Add permalinks to Slate.js source code pieces [Silviu Bogan - [`055e424`](https://github.com/eea/volto-slate/commit/055e424682a5f238caba6ccf7c722d33f0b1cfb0)] +- Better selection after merging blocks w/ Backspace [Silviu Bogan - [`25a02b5`](https://github.com/eea/volto-slate/commit/25a02b5c6488ebe7dc80418d042845ac14c4c85b)] +- WIP [Tiberiu Ichim - [`d010260`](https://github.com/eea/volto-slate/commit/d0102606c72d3dde834c08de0fcf4b03af6c7897)] +- Release 5.0.0 [Alin Voinea - [`c44b3b7`](https://github.com/eea/volto-slate/commit/c44b3b7a91568ddfad4e1add1c5fdd6cfda64e3e)] +- Bring back old version of code [Tiberiu Ichim - [`f2a7c2c`](https://github.com/eea/volto-slate/commit/f2a7c2c77ac1b1f2d73257437fbe268eed3818f9)] +- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`7fd4ebe`](https://github.com/eea/volto-slate/commit/7fd4ebeee1c45fd95b7c9aa49943cc25d333e5ba)] +- Revert "Disable cypress in order to be able to release" [Alin Voinea - [`d57c9cf`](https://github.com/eea/volto-slate/commit/d57c9cfc6cacf3418fbd35eb1ae17f9d40e18c07)] +- Release 4.1.0 [Alin Voinea - [`bc3c6df`](https://github.com/eea/volto-slate/commit/bc3c6df829d69673472fd992995eb49163bc2aad)] +- Disable cypress in order to be able to release [Alin Voinea - [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89)] +- Possibility to make SlateRichText Widget read-only in edit mode [Alin Voinea - [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524)] +- Update Jest snapshots [Silviu Bogan - [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0)] +- Run `yarn prettier:fix` [Silviu Bogan - [`df9d5cc`](https://github.com/eea/volto-slate/commit/df9d5ccd75007f4f5e7f0bea6f2ffbb4a52f2aed)] +- Remove `only` mark on the new Cypress test [Silviu Bogan - [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9)] +- Working Cypress test in 21-metadata-slate-format-link.js [Silviu Bogan - [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676)] +### [4.2.1](https://github.com/eea/volto-slate/compare/4.2.0...4.2.1) - 18 October 2021 + +#### :hammer_and_wrench: Others + +- Release 4.2.1 [Alin Voinea - [`c365dff`](https://github.com/eea/volto-slate/commit/c365dff307cf38ddc34ebc6890f9409a0da15fa8)] +- Possibility to make SlateRichText Widget read-only in edit mode [Alin Voinea - [`c5d0bdc`](https://github.com/eea/volto-slate/commit/c5d0bdc2a68a25b7eef62d815b3b8148c807bdfb)] +### [4.2.0](https://github.com/eea/volto-slate/compare/4.1.0...4.2.0) - 18 October 2021 + +#### :hammer_and_wrench: Others + +- Release 4.2.0 [Alin Voinea - [`c2eb459`](https://github.com/eea/volto-slate/commit/c2eb4599c4b0be538c0f1c94506886929e62e67d)] +### [4.1.0](https://github.com/eea/volto-slate/compare/4.0.3...4.1.0) - 14 October 2021 + +#### :bug: Bug Fixes + +- fix: HTML paste of inline Slate element in `ul` created separate Volto block [Silviu Bogan - [`e385060`](https://github.com/eea/volto-slate/commit/e3850603304e07fd60915de62ed1ef1911965fa4)] +- fix: merging 2 Volto-Slate blocks w/ backspace crashes Volto [Silviu Bogan - [`d839172`](https://github.com/eea/volto-slate/commit/d83917280f3be60b4348cfb9ed02e7f578714bb9)] + +#### :hammer_and_wrench: Others + +- Release 4.1.0 [Alin Voinea - [`bc3c6df`](https://github.com/eea/volto-slate/commit/bc3c6df829d69673472fd992995eb49163bc2aad)] +- Disable cypress in order to be able to release [Alin Voinea - [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89)] +- Possibility to make SlateRichText Widget read-only in edit mode [Alin Voinea - [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524)] +- Update Jest snapshots [Silviu Bogan - [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0)] +- Run `yarn prettier:fix` [Silviu Bogan - [`df9d5cc`](https://github.com/eea/volto-slate/commit/df9d5ccd75007f4f5e7f0bea6f2ffbb4a52f2aed)] +- Remove `only` mark on the new Cypress test [Silviu Bogan - [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9)] +- Working Cypress test in 21-metadata-slate-format-link.js [Silviu Bogan - [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676)] +### [4.0.3](https://github.com/eea/volto-slate/compare/4.0.2...4.0.3) - 30 September 2021 + +#### :hammer_and_wrench: Others + +- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`fe1fd6f`](https://github.com/eea/volto-slate/commit/fe1fd6f655da49d578bbefec3a68d6c5da224ada)] +### [4.0.2](https://github.com/eea/volto-slate/compare/4.0.2-alpha.0...4.0.2) - 29 September 2021 + +### [4.0.2-alpha.0](https://github.com/eea/volto-slate/compare/4.0.1...4.0.2-alpha.0) - 28 September 2021 + +#### :hammer_and_wrench: Others + +- slate editor paste table do not skip deconstruct [Andrei Grigore - [`c283481`](https://github.com/eea/volto-slate/commit/c283481824dc308db00d2a89498414602c9ade0f)] +### [4.0.1](https://github.com/eea/volto-slate/compare/4.0.1-alpha.1...4.0.1) - 27 September 2021 + +### [4.0.1-alpha.1](https://github.com/eea/volto-slate/compare/4.0.1-alpha.0...4.0.1-alpha.1) - 28 September 2021 + +#### :hammer_and_wrench: Others + +- slate editor paste table do not skip deconstruct [Andrei Grigore - [`c283481`](https://github.com/eea/volto-slate/commit/c283481824dc308db00d2a89498414602c9ade0f)] +### [4.0.1-alpha.0](https://github.com/eea/volto-slate/compare/4.0.0...4.0.1-alpha.0) - 27 September 2021 + +#### :hammer_and_wrench: Others + +- Fix for pasting links breaking slate blocks into multiple blocks [Andrei Grigore - [`1ff750f`](https://github.com/eea/volto-slate/commit/1ff750f43d5ab03e8279387809e258bdcf7cdbb8)] +### [4.0.0](https://github.com/eea/volto-slate/compare/4.0.0-alpha.0...4.0.0) - 24 September 2021 -- Fix cypress to work with latest Plone 6 [`#228`](https://github.com/eea/volto-slate/pull/228) +#### :hammer_and_wrench: Others -#### [5.3.3](https://github.com/eea/volto-slate/compare/5.3.2...5.3.3) +- Fix tableButton profile to enable/disable only table button [Alin Voinea - [`20887a7`](https://github.com/eea/volto-slate/commit/20887a707e793e97054863ea1429c1ca7f862e14)] +### [4.0.0-alpha.0](https://github.com/eea/volto-slate/compare/3.1.1...4.0.0-alpha.0) - 21 September 2021 + +#### :hammer_and_wrench: Others + +- Include asDefaultRichText within asDefault profile. Re-enable cypress [Alin Voinea - [`af2ee82`](https://github.com/eea/volto-slate/commit/af2ee82a95f234c5a82c731ad5d4b9ffc047a028)] +- Release 4.0.0 - Upgrade steps [Alin Voinea - [`1980cad`](https://github.com/eea/volto-slate/commit/1980cad492fb466faecc29ca8823e7a60ed65693)] +- Namespace the plugins, otherwise there's problems with richtext fields [Tiberiu Ichim - [`e7d4b3b`](https://github.com/eea/volto-slate/commit/e7d4b3bc8fd58fbb389e17a28558629f06bfed1d)] +### [3.1.1](https://github.com/eea/volto-slate/compare/3.1.0...3.1.1) - 20 September 2021 + +#### :hammer_and_wrench: Others + +- Update tests snapshots [Alin Voinea - [`4fed203`](https://github.com/eea/volto-slate/commit/4fed2037a74bc10d2d962b2b8821811eb72801e1)] +- Add table className also on edit [Alin Voinea - [`9fa9140`](https://github.com/eea/volto-slate/commit/9fa9140b2333352ab03198c4ea0ef2a6653169c4)] +- Add className on Table block in order to be able to theme it [Alin Voinea - [`0dfd748`](https://github.com/eea/volto-slate/commit/0dfd748adbcc1ec77cb7d643077ddee7c7641678)] +- Revert SimpleLink/index.js [Tiberiu Ichim - [`ad3aa4c`](https://github.com/eea/volto-slate/commit/ad3aa4c451aea923f916b6542f38e6710e43e418)] +- Fix misspelled variable [Tiberiu Ichim - [`58286dc`](https://github.com/eea/volto-slate/commit/58286dce0ab76b89bb4ce309cc255e27111de569)] +- Add comment on code purpose [Tiberiu Ichim - [`305bf53`](https://github.com/eea/volto-slate/commit/305bf53ed9937e05d9ac8b1a90656addd07ebf80)] +- Don't allow clicking the link in the editor [Tiberiu Ichim - [`617d19c`](https://github.com/eea/volto-slate/commit/617d19ce503ca3f0aab6ebbe516e400dc40ec384)] +### [3.1.0](https://github.com/eea/volto-slate/compare/3.1.0-alpha.1...3.1.0) - 14 September 2021 + +#### :hammer_and_wrench: Others + +- Revert "Disable some cypress tests in order to be able to release" [Alin Voinea - [`52ffee2`](https://github.com/eea/volto-slate/commit/52ffee2ba4fa586d3349be0e74ee687de5b2d069)] +### [3.1.0-alpha.1](https://github.com/eea/volto-slate/compare/3.1.0-alpha.0...3.1.0-alpha.1) - 14 September 2021 + +#### :hammer_and_wrench: Others + +- Add docs/ to npmignore [Alin Voinea - [`8f2cd4d`](https://github.com/eea/volto-slate/commit/8f2cd4d4f4ebf317351fd4eab4229e7dc9a8e2ae)] +- Add .npmignore [Alin Voinea - [`e156af4`](https://github.com/eea/volto-slate/commit/e156af41c9cecd705622b8270154bcb834ee6b69)] +### [3.1.0-alpha.0](https://github.com/eea/volto-slate/compare/3.0.1...3.1.0-alpha.0) - 14 September 2021 + +#### :hammer_and_wrench: Others + +- Disable some cypress tests in order to be able to release [Alin Voinea - [`7f93350`](https://github.com/eea/volto-slate/commit/7f93350d4e59ea2a770dee8eda26f4a491e5af6a)] +### [3.0.1](https://github.com/eea/volto-slate/compare/3.0.0...3.0.1) - 13 September 2021 -> 5 January 2022 +#### :hammer_and_wrench: Others -- Fix cypress table selector [`#226`](https://github.com/eea/volto-slate/pull/226) +- Upgrade to 3.x.x [Alin Voinea - [`e059861`](https://github.com/eea/volto-slate/commit/e0598619129614feddc9160011480eafa15d957c)] +### [3.0.0](https://github.com/eea/volto-slate/compare/3.0.0-alpha.0...3.0.0) - 10 September 2021 -#### [5.3.2](https://github.com/eea/volto-slate/compare/5.3.1...5.3.2) +#### :hammer_and_wrench: Others -> 4 January 2022 +- Fix cypress api_url [Alin Voinea - [`596cbfb`](https://github.com/eea/volto-slate/commit/596cbfbf1d1820c28faa1ea178ee05a2b6a72f9c)] +- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`a97689d`](https://github.com/eea/volto-slate/commit/a97689de4dc39186da03ed0b1216471d2e305764)] +### [3.0.0-alpha.0](https://github.com/eea/volto-slate/compare/2.9.3...3.0.0-alpha.0) - 9 September 2021 + +#### :hammer_and_wrench: Others + +- Fix volto-object-widget dependency pin [Alin Voinea - [`d72ebdd`](https://github.com/eea/volto-slate/commit/d72ebddee1e25afdc188d39c953796d2e94ced2e)] +- Cypress increase timeout and retries [Alin Voinea - [`c8ff87c`](https://github.com/eea/volto-slate/commit/c8ff87c38e304661c348a7590dad994fa700bdb2)] +- Reduce cypress timeout and retries [Alin Voinea - [`ee28f67`](https://github.com/eea/volto-slate/commit/ee28f67f0022f44cce58d9b5423770f9e8320369)] +- yarn lint [Alin Voinea - [`4f16d84`](https://github.com/eea/volto-slate/commit/4f16d84db174bb092344f91522dc5d2a0cf44f91)] +- Add cypress tests for Slate JSON Field metadata [Alin Voinea - [`c2460d9`](https://github.com/eea/volto-slate/commit/c2460d9e6fec7e90c9c0eefb6f43f9b994588b74)] +- Fix deconstructToVoltoBlocks conditions [Alin Voinea - [`887ec31`](https://github.com/eea/volto-slate/commit/887ec312e02e0ca56e17de423a078024ca8e6a24)] +- Cypress retry 3 times before fail [Alin Voinea - [`dd4762b`](https://github.com/eea/volto-slate/commit/dd4762bbd59195e7de7803b4432ab7f75568ee56)] +- Fix deserialize.js [Alin Voinea - [`aef31f1`](https://github.com/eea/volto-slate/commit/aef31f14c599a8dd5fbc3d78de6772080142abb6)] +- Fix isNotTextBlock condition [Alin Voinea - [`d20aa43`](https://github.com/eea/volto-slate/commit/d20aa43d65e7e79f9d64fa3075fb1751bb06c07a)] +- Fix list items style within sidebar metadata editor [Alin Voinea - [`3044370`](https://github.com/eea/volto-slate/commit/3044370593b24753acc5b2b0b633353d84b783f5)] +- Code cleanup [Tiberiu Ichim - [`1770743`](https://github.com/eea/volto-slate/commit/177074371e00eba400181b5827592e1537786821)] +- Be more safe with list handling out of blocks [Tiberiu Ichim - [`4921e1e`](https://github.com/eea/volto-slate/commit/4921e1ec90d1edfeda546b1cab005b3ddb129520)] +- Be more safe with list handling out of blocks [Tiberiu Ichim - [`f996057`](https://github.com/eea/volto-slate/commit/f99605792c002396ddd83c0d1264cd31374c9ea1)] +- Remove unused import [Tiberiu Ichim - [`c0bb6b5`](https://github.com/eea/volto-slate/commit/c0bb6b534199a9438860467bb4621e9d95c7b2ad)] +- Fix table cell selection [Tiberiu Ichim - [`405db60`](https://github.com/eea/volto-slate/commit/405db601fcebbbdffe33793dc9766c64786a438b)] +- Remove DEPRECATED PageLinkSchema. Not used [Alin Voinea - [`55bfdf7`](https://github.com/eea/volto-slate/commit/55bfdf7b4bc801b43d2610bb5e1121e272c8581f)] +- Fix linting [Alin Voinea - [`efcceb4`](https://github.com/eea/volto-slate/commit/efcceb46a227ca86d9eaae688e51694d210f78fd)] +- Remove DEPRECATED ObjectBrowserWidget. Moved to Volto core [Alin Voinea - [`97c8d15`](https://github.com/eea/volto-slate/commit/97c8d1503a1ad11869635ed1c86c57594af5c6f8)] +- Remove DEPRECATED ObjectWidget from futurevolto. Moved to Volto core [Alin Voinea - [`bc38505`](https://github.com/eea/volto-slate/commit/bc38505c656f689b4ca70eebd4fd29ad0cbfd491)] +- Remove DEPRECATED Blocks helpers and SidebarPopup [Alin Voinea - [`3edf6a8`](https://github.com/eea/volto-slate/commit/3edf6a88604080091c70b560e03116b684945ad5)] +- Add SlateRichtextWidgetView to be used with metadata block/mentions [Alin Voinea - [`369f7ef`](https://github.com/eea/volto-slate/commit/369f7ef73d1bc64841a6d14b11594e9a3ad1f651)] +- BREAKING - Remove table button from defaults [Alin Voinea - [`945a13a`](https://github.com/eea/volto-slate/commit/945a13a257ef4d2edfa751fe4f91af07ac243f3a)] +- Remove duplicate blockquote button within toolbar [Alin Voinea - [`346620f`](https://github.com/eea/volto-slate/commit/346620ff5de6f4c45f9d48624401c72ebb58ac92)] +- Support new metadata fields on old content [Alin Voinea - [`e4c7f9d`](https://github.com/eea/volto-slate/commit/e4c7f9ddc6e67b18baaff0ea1379379055a32168)] +- Register slate widget to be used with DX metadata [Alin Voinea - [`c98f6c0`](https://github.com/eea/volto-slate/commit/c98f6c0e07bfc26278a2bb4dade79f83036c2a6f)] +- Add Lock-Token to default CORS allow_headers [Alin Voinea - [`57f7f95`](https://github.com/eea/volto-slate/commit/57f7f9506662dbe1f777328d55ce61250061713a)] +### [2.9.3](https://github.com/eea/volto-slate/compare/2.9.2...2.9.3) - 26 August 2021 -- Release: transform to new text block on empty list [`#225`](https://github.com/eea/volto-slate/pull/225) -- fix:transform to new text block on empty list [`#223`](https://github.com/eea/volto-slate/pull/223) -- added a cypress for above scenario [`9e748fa`](https://github.com/eea/volto-slate/commit/9e748fad9a5e2488917873e6307981b4427989e1) +### [2.9.2](https://github.com/eea/volto-slate/compare/2.9.1...2.9.2) - 24 August 2021 -#### [5.3.1](https://github.com/eea/volto-slate/compare/5.3.0...5.3.1) - -> 3 January 2022 - -- Fix cypress: this element is not visible [`#224`](https://github.com/eea/volto-slate/pull/224) - -#### [5.3.0](https://github.com/eea/volto-slate/compare/5.2.1...5.3.0) - -> 30 December 2021 - -- Release [`#222`](https://github.com/eea/volto-slate/pull/222) -- Cypress: paste external html text-content [`#214`](https://github.com/eea/volto-slate/pull/214) -- always have an empty node descendant in link [`#215`](https://github.com/eea/volto-slate/pull/215) -- do not split blocks on pasting external formatted content [`#220`](https://github.com/eea/volto-slate/pull/220) -- Release 5.3.0 [`f9d86a6`](https://github.com/eea/volto-slate/commit/f9d86a6b08b156fafa2df4f02652bb6931a993e8) -- cometics on cypress [`e65bd94`](https://github.com/eea/volto-slate/commit/e65bd941d112a347fc7526abb23ecf538858fb74) -- fix import [`b6dc581`](https://github.com/eea/volto-slate/commit/b6dc581d05aaf8bb46e960d3b309eabe56ef5ca2) -- use block checker from slate [`a274290`](https://github.com/eea/volto-slate/commit/a274290ea19e03cc7d532c81a7136d83c3927037) -- fix cypress for table [`e538859`](https://github.com/eea/volto-slate/commit/e5388590f655cabc8bec33bc4b220c111b354dc1) -- update conditional [`db50175`](https://github.com/eea/volto-slate/commit/db5017561a7bba7a868d64b6d05e826b10babfb9) -- also exclude top level block elements [`451807b`](https://github.com/eea/volto-slate/commit/451807b87f5aa06b118ca81c6f7962288cd0734b) -- WIP lint [`498b600`](https://github.com/eea/volto-slate/commit/498b60031a5fb151f45481e8ca8a75f8a7fce63c) -- allow block elements to pass through normalizer [`6ecadcf`](https://github.com/eea/volto-slate/commit/6ecadcf864c8b3e72f176fb03c36cf0369cd3718) -- match on upper level [`331ba78`](https://github.com/eea/volto-slate/commit/331ba78372fe5d4deee9b6f694366c96b31d0ef3) -- cy: paste formatted html texts [`c10029f`](https://github.com/eea/volto-slate/commit/c10029f62d0e6dd68edf5d4bad6498703df0c358) -- fix empty child in deserialize itself [`e8ee61d`](https://github.com/eea/volto-slate/commit/e8ee61d888f525ce2ba5a7113457f270ddd78cf4) -- WIP [`49defd4`](https://github.com/eea/volto-slate/commit/49defd493d8db60ba9a2f983b5557e13c0e36220) -- do not match block elements [`daadd47`](https://github.com/eea/volto-slate/commit/daadd47546922454c2fa4849dcb8561f9ebc116f) -- stylelint:remove comment [`fd5b4ea`](https://github.com/eea/volto-slate/commit/fd5b4ea2068470e08fd26cf801a413df9ed5e6ca) -- remove isInline [`e1df75e`](https://github.com/eea/volto-slate/commit/e1df75efa3b6f6ecfa1eae58e2b1a5fd416e6229) -- try to use proper match and avoid loop [`9e4e3bd`](https://github.com/eea/volto-slate/commit/9e4e3bd056996116092973a5672fee606eb7eaf7) -- remove undefined childs [`242bdb4`](https://github.com/eea/volto-slate/commit/242bdb43de2440be9b055892c38ccdc1f888bfc9) -- fix lint [`78ed980`](https://github.com/eea/volto-slate/commit/78ed98002f432dd76c1c835ef73c11f6938f6c1d) -- always add empty child into Editor while normalizing [`7ee309b`](https://github.com/eea/volto-slate/commit/7ee309bac5164567714474002f9364872c7641e2) -- filter empy nodes [`974daaa`](https://github.com/eea/volto-slate/commit/974daaace39d79cd7b9528e8b8e4503beaba73c8) -- resolve comments [`d761517`](https://github.com/eea/volto-slate/commit/d76151755c2936ded5244c0e731efb9331278dfd) -- Transform only text nodes [`82f5e61`](https://github.com/eea/volto-slate/commit/82f5e618d9d56d8e6055c7a1231720ee048ad76b) -- cypress: paste external html content [`acb1384`](https://github.com/eea/volto-slate/commit/acb13849f0d35b92f786effd65bf405fcb09ca4b) - -#### [5.2.1](https://github.com/eea/volto-slate/compare/5.2.0...5.2.1) - -> 22 December 2021 - -- Release: Compatibility with react 17 (#218) [`#219`](https://github.com/eea/volto-slate/pull/219) -- Compatibility with react 17 [`#218`](https://github.com/eea/volto-slate/pull/218) - -#### [5.2.0](https://github.com/eea/volto-slate/compare/5.1.3...5.2.0) - -> 17 December 2021 - -- Release [`#211`](https://github.com/eea/volto-slate/pull/211) -- cypress: paste ext images, docs update [`#207`](https://github.com/eea/volto-slate/pull/207) -- Add "Delete table" contextual toolbar button [`#206`](https://github.com/eea/volto-slate/pull/206) -- fix: show contextual toolbar below main toolbar [`#201`](https://github.com/eea/volto-slate/pull/201) -- Solve small bug in wrapInlineMarkupText [`#191`](https://github.com/eea/volto-slate/pull/191) -- Fix: new empty text block not showing "block chooser" [`#203`](https://github.com/eea/volto-slate/pull/203) -- cypress: test for copy/paste bold formatted lists [`#200`](https://github.com/eea/volto-slate/pull/200) -- Backwards block merge 2 [`#195`](https://github.com/eea/volto-slate/pull/195) -- Upgrade slate and slate-react versions [`#196`](https://github.com/eea/volto-slate/pull/196) -- Add SonarQube badges [`a929620`](https://github.com/eea/volto-slate/commit/a929620de3e8f36af0b1d2a5a82d3831c194819f) -- Release 5.2.0 [`e941f3d`](https://github.com/eea/volto-slate/commit/e941f3d987d62fbffce095b013561629614148a1) -- Don't crash in trim check [`db2cbf9`](https://github.com/eea/volto-slate/commit/db2cbf91f0fe8956eae786bfe187565b7226c302) -- finalise pasting and deleting of table [`65a4062`](https://github.com/eea/volto-slate/commit/65a40629985ef9e2ae50dc776927d139db860dd3) -- WIP [`2dc2d30`](https://github.com/eea/volto-slate/commit/2dc2d3047f70dcb43de0e8c0c4cee5d8ea2e2b90) -- WIP: cypress [`23710e1`](https://github.com/eea/volto-slate/commit/23710e12d322708adf225b728158041ec96dcf1f) -- update readme [`d88a70f`](https://github.com/eea/volto-slate/commit/d88a70f9f7548cdbd0dee8e68a5d51550dbd637a) -- cypress:paste ext images, docs update [`fd7f4c3`](https://github.com/eea/volto-slate/commit/fd7f4c3114ece2449785ea8ece987e793a28d9eb) -- Add more buttons to the Table contextual toolbar [`d048c34`](https://github.com/eea/volto-slate/commit/d048c347b2e9f3509c8a5d37166f542350e96389) -- Extend Toolbar instead of creating ElementToolbar [`6f13b37`](https://github.com/eea/volto-slate/commit/6f13b37935840ecb2515ef3ca33a8ecbbec8edb9) -- Remove useless commented line [`f02a9e3`](https://github.com/eea/volto-slate/commit/f02a9e3aca19b5f7f0d39ec6a2e3040fc65a3591) -- Multiple Description blocks on the same page update each other [`44ec992`](https://github.com/eea/volto-slate/commit/44ec9923717b99516c2899fd26f51e8a860e14e0) -- Make it work with new react-slate method of getting the value [`9256b59`](https://github.com/eea/volto-slate/commit/9256b5904617e700f78ccde2e92a1d042461f28c) -- Split text block editor components in separate modules [`0888e61`](https://github.com/eea/volto-slate/commit/0888e6177254562c501847c151e946b6c8f10537) -- Revert to older version of slate-react [`044fadf`](https://github.com/eea/volto-slate/commit/044fadf592dc71a5756e82a94a98df0ba0b8c7ac) -- Refs #142010 - Optimize Volto-addons gitflow pipelines [`33bc1ed`](https://github.com/eea/volto-slate/commit/33bc1edeb63ee0d0e6fb8fa6c170d11ed4922a3d) - -#### [5.1.3](https://github.com/eea/volto-slate/compare/5.1.2...5.1.3) - -> 5 December 2021 - - -#### [5.1.2](https://github.com/eea/volto-slate/compare/5.1.1...5.1.2) - -> 30 November 2021 - -- Develop [`#202`](https://github.com/eea/volto-slate/pull/202) - -#### [5.1.1](https://github.com/eea/volto-slate/compare/5.1.0...5.1.1) - -> 18 November 2021 - -- Title description nested blocks [`#188`](https://github.com/eea/volto-slate/pull/188) -- Title description nested blocks [`#187`](https://github.com/eea/volto-slate/pull/187) - -#### [5.1.0](https://github.com/eea/volto-slate/compare/5.0.0...5.1.0) - -> 18 November 2021 - -- Release [`#184`](https://github.com/eea/volto-slate/pull/184) -- External data normalization [`#181`](https://github.com/eea/volto-slate/pull/181) -- Update tests snapshots [`dafcef0`](https://github.com/eea/volto-slate/commit/dafcef0f0337e043bc1a821c3c18641a9e3a11f8) -- Remove obsolte resolutions [`3738673`](https://github.com/eea/volto-slate/commit/37386734e9942d3b835f0265a2a48ccda3cd4b91) -- Release 5.1.0 [`140c219`](https://github.com/eea/volto-slate/commit/140c219ba9036531644474546f1fe5a461713886) - -### [5.0.0](https://github.com/eea/volto-slate/compare/4.2.1...5.0.0) - -> 5 November 2021 - -- Title and Description blocks; Detached block doesn't need sidebar. Fix bug in simpleLink deserializer; Various other fixes. [`#168`](https://github.com/eea/volto-slate/pull/168) -- fix: bug in simple link deserializer [`#182`](https://github.com/eea/volto-slate/pull/182) -- No sidebar for detached block. [`#180`](https://github.com/eea/volto-slate/pull/180) -- Fix block joining [`#169`](https://github.com/eea/volto-slate/pull/169) -- Make all Cypress tests work [`#171`](https://github.com/eea/volto-slate/pull/171) -- Title and Description blocks [`#165`](https://github.com/eea/volto-slate/pull/165) -- Release [`#166`](https://github.com/eea/volto-slate/pull/166) -- WIP on an uncommented Cypress test [`#164`](https://github.com/eea/volto-slate/pull/164) -- lint: remove unused variable [`49b0929`](https://github.com/eea/volto-slate/commit/49b09292665d4c52e854a704c555f42fed4b7271) -- removing the sidebar from detached editor [`5e959dc`](https://github.com/eea/volto-slate/commit/5e959dc83a4ef4e979b2aedd4647d9a7eac44f5d) -- Now you can disable the sidebar of detached editor [`f6cd8b5`](https://github.com/eea/volto-slate/commit/f6cd8b5758702e75431ef5b7cbf8cc531a388c64) -- Remove dead import [`6cd6d80`](https://github.com/eea/volto-slate/commit/6cd6d80e928d312654672648a850c08e83aec5d6) -- Remove dead code [`e5112f8`](https://github.com/eea/volto-slate/commit/e5112f84cddbbc66cd506bcd3366cf2c295ccb49) -- Don't create 'li' when merging blocks w/ Backspace [`5d9e5cb`](https://github.com/eea/volto-slate/commit/5d9e5cbfb0509130aee36bbf3fc5eedfb8e8d065) -- fix: buggy selection after block merge w/ Backspace [`24736f6`](https://github.com/eea/volto-slate/commit/24736f649c7a1fa732e466c6e7c816eb82d41f7b) -- fix: empty 'p' in the block merged w/ Backspace [`7e7ff3c`](https://github.com/eea/volto-slate/commit/7e7ff3ca39892acd8b34f112a33c49c4c9083c54) -- Correct selection after blocks merged w/ Backspace [`01778b9`](https://github.com/eea/volto-slate/commit/01778b92b8f24434148925e75cb7d77bdcc24017) -- Better merge of blocks with Backspace [`82f252e`](https://github.com/eea/volto-slate/commit/82f252ef0cfcbb545fceabc5a07749598c9c9729) -- WIP on joining bold paragraph with previous block [`f765120`](https://github.com/eea/volto-slate/commit/f765120c73fa54b3ba6efe6dcbc970c2c68b7226) -- Solve ESLint issues [`64f53a4`](https://github.com/eea/volto-slate/commit/64f53a43070800db0b0063092466d300c12dbaae) -- Add permalinks to Slate.js source code pieces [`055e424`](https://github.com/eea/volto-slate/commit/055e424682a5f238caba6ccf7c722d33f0b1cfb0) -- Better selection after merging blocks w/ Backspace [`25a02b5`](https://github.com/eea/volto-slate/commit/25a02b5c6488ebe7dc80418d042845ac14c4c85b) -- WIP [`d010260`](https://github.com/eea/volto-slate/commit/d0102606c72d3dde834c08de0fcf4b03af6c7897) -- Release 5.0.0 [`c44b3b7`](https://github.com/eea/volto-slate/commit/c44b3b7a91568ddfad4e1add1c5fdd6cfda64e3e) -- Bring back old version of code [`f2a7c2c`](https://github.com/eea/volto-slate/commit/f2a7c2c77ac1b1f2d73257437fbe268eed3818f9) -- Revert "Disable cypress in order to be able to release" [`d57c9cf`](https://github.com/eea/volto-slate/commit/d57c9cfc6cacf3418fbd35eb1ae17f9d40e18c07) -- Release 4.1.0 [`bc3c6df`](https://github.com/eea/volto-slate/commit/bc3c6df829d69673472fd992995eb49163bc2aad) -- Disable cypress in order to be able to release [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89) -- Possibility to make SlateRichText Widget read-only in edit mode [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524) -- fix: HTML paste of inline Slate element in `ul` created separate Volto block [`e385060`](https://github.com/eea/volto-slate/commit/e3850603304e07fd60915de62ed1ef1911965fa4) -- fix: merging 2 Volto-Slate blocks w/ backspace crashes Volto [`d839172`](https://github.com/eea/volto-slate/commit/d83917280f3be60b4348cfb9ed02e7f578714bb9) -- Update Jest snapshots [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0) -- Remove `only` mark on the new Cypress test [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9) -- Working Cypress test in 21-metadata-slate-format-link.js [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676) - -#### [4.2.1](https://github.com/eea/volto-slate/compare/4.2.0...4.2.1) - -> 18 October 2021 - -- Release 4.2.1 [`c365dff`](https://github.com/eea/volto-slate/commit/c365dff307cf38ddc34ebc6890f9409a0da15fa8) -- Possibility to make SlateRichText Widget read-only in edit mode [`c5d0bdc`](https://github.com/eea/volto-slate/commit/c5d0bdc2a68a25b7eef62d815b3b8148c807bdfb) - -#### [4.2.0](https://github.com/eea/volto-slate/compare/4.1.0...4.2.0) - -> 18 October 2021 - -- Release 4.2.0 [`c2eb459`](https://github.com/eea/volto-slate/commit/c2eb4599c4b0be538c0f1c94506886929e62e67d) - -#### [4.1.0](https://github.com/eea/volto-slate/compare/4.0.3...4.1.0) - -> 14 October 2021 - -- Release [`#166`](https://github.com/eea/volto-slate/pull/166) -- WIP on an uncommented Cypress test [`#164`](https://github.com/eea/volto-slate/pull/164) -- Release 4.1.0 [`bc3c6df`](https://github.com/eea/volto-slate/commit/bc3c6df829d69673472fd992995eb49163bc2aad) -- Disable cypress in order to be able to release [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89) -- Possibility to make SlateRichText Widget read-only in edit mode [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524) -- fix: HTML paste of inline Slate element in `ul` created separate Volto block [`e385060`](https://github.com/eea/volto-slate/commit/e3850603304e07fd60915de62ed1ef1911965fa4) -- fix: merging 2 Volto-Slate blocks w/ backspace crashes Volto [`d839172`](https://github.com/eea/volto-slate/commit/d83917280f3be60b4348cfb9ed02e7f578714bb9) -- Update Jest snapshots [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0) -- Remove `only` mark on the new Cypress test [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9) -- Working Cypress test in 21-metadata-slate-format-link.js [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676) - -#### [4.0.3](https://github.com/eea/volto-slate/compare/4.0.2...4.0.3) - -> 30 September 2021 - -- Better url deserialize [`#162`](https://github.com/eea/volto-slate/pull/162) -- Better url deserialize [`#161`](https://github.com/eea/volto-slate/pull/161) - -#### [4.0.2](https://github.com/eea/volto-slate/compare/4.0.2-alpha.0...4.0.2) - -> 29 September 2021 - -- slate editor paste table do not skip deconstruct [`#160`](https://github.com/eea/volto-slate/pull/160) -- Fix for pasting links breaking slate blocks into multiple blocks [`#158`](https://github.com/eea/volto-slate/pull/158) -- Release 4.0.0 [`#157`](https://github.com/eea/volto-slate/pull/157) -- Release [`#154`](https://github.com/eea/volto-slate/pull/154) -- Release 3.1.0 - html widget fixes (#149) [`#152`](https://github.com/eea/volto-slate/pull/152) -- Upgrade to 3.x.x README update [`#151`](https://github.com/eea/volto-slate/pull/151) -- Release 3.0.0 [`#150`](https://github.com/eea/volto-slate/pull/150) - -#### [4.0.2-alpha.0](https://github.com/eea/volto-slate/compare/4.0.1...4.0.2-alpha.0) - -> 28 September 2021 - -- slate editor paste table do not skip deconstruct [`c283481`](https://github.com/eea/volto-slate/commit/c283481824dc308db00d2a89498414602c9ade0f) - -#### [4.0.1](https://github.com/eea/volto-slate/compare/4.0.1-alpha.1...4.0.1) - -> 27 September 2021 - -- Fix for pasting links breaking slate blocks into multiple blocks [`#158`](https://github.com/eea/volto-slate/pull/158) -- Release 4.0.0 [`#157`](https://github.com/eea/volto-slate/pull/157) -- Release [`#154`](https://github.com/eea/volto-slate/pull/154) -- Release 3.1.0 - html widget fixes (#149) [`#152`](https://github.com/eea/volto-slate/pull/152) -- Upgrade to 3.x.x README update [`#151`](https://github.com/eea/volto-slate/pull/151) -- Release 3.0.0 [`#150`](https://github.com/eea/volto-slate/pull/150) - -#### [4.0.1-alpha.1](https://github.com/eea/volto-slate/compare/4.0.1-alpha.0...4.0.1-alpha.1) - -> 28 September 2021 - -- slate editor paste table do not skip deconstruct [`c283481`](https://github.com/eea/volto-slate/commit/c283481824dc308db00d2a89498414602c9ade0f) - -#### [4.0.1-alpha.0](https://github.com/eea/volto-slate/compare/4.0.0...4.0.1-alpha.0) - -> 27 September 2021 - -- Fix for pasting links breaking slate blocks into multiple blocks [`1ff750f`](https://github.com/eea/volto-slate/commit/1ff750f43d5ab03e8279387809e258bdcf7cdbb8) - -#### [4.0.0](https://github.com/eea/volto-slate/compare/4.0.0-alpha.0...4.0.0) - -> 24 September 2021 - -- Release 4.0.0 [`#157`](https://github.com/eea/volto-slate/pull/157) -- Namespace the plugins, otherwise there's problems with richtext fields [`#156`](https://github.com/eea/volto-slate/pull/156) -- Release [`#154`](https://github.com/eea/volto-slate/pull/154) -- Release 3.1.0 - html widget fixes (#149) [`#152`](https://github.com/eea/volto-slate/pull/152) -- Upgrade to 3.x.x README update [`#151`](https://github.com/eea/volto-slate/pull/151) -- Release 3.0.0 [`#150`](https://github.com/eea/volto-slate/pull/150) -- Fix tableButton profile to enable/disable only table button [`20887a7`](https://github.com/eea/volto-slate/commit/20887a707e793e97054863ea1429c1ca7f862e14) - -#### [4.0.0-alpha.0](https://github.com/eea/volto-slate/compare/3.1.1...4.0.0-alpha.0) - -> 21 September 2021 - -- Include asDefaultRichText within asDefault profile. Re-enable cypress [`af2ee82`](https://github.com/eea/volto-slate/commit/af2ee82a95f234c5a82c731ad5d4b9ffc047a028) -- Release 4.0.0 - Upgrade steps [`1980cad`](https://github.com/eea/volto-slate/commit/1980cad492fb466faecc29ca8823e7a60ed65693) -- Namespace the plugins, otherwise there's problems with richtext fields [`e7d4b3b`](https://github.com/eea/volto-slate/commit/e7d4b3bc8fd58fbb389e17a28558629f06bfed1d) - -#### [3.1.1](https://github.com/eea/volto-slate/compare/3.1.0...3.1.1) - -> 20 September 2021 - -- Release [`#154`](https://github.com/eea/volto-slate/pull/154) -- EN/DE translations [`#155`](https://github.com/eea/volto-slate/pull/155) -- Fix table interaction [`#153`](https://github.com/eea/volto-slate/pull/153) -- Update tests snapshots [`4fed203`](https://github.com/eea/volto-slate/commit/4fed2037a74bc10d2d962b2b8821811eb72801e1) -- Add table className also on edit [`9fa9140`](https://github.com/eea/volto-slate/commit/9fa9140b2333352ab03198c4ea0ef2a6653169c4) -- Add className on Table block in order to be able to theme it [`0dfd748`](https://github.com/eea/volto-slate/commit/0dfd748adbcc1ec77cb7d643077ddee7c7641678) -- Revert SimpleLink/index.js [`ad3aa4c`](https://github.com/eea/volto-slate/commit/ad3aa4c451aea923f916b6542f38e6710e43e418) -- Fix misspelled variable [`58286dc`](https://github.com/eea/volto-slate/commit/58286dce0ab76b89bb4ce309cc255e27111de569) -- Add comment on code purpose [`305bf53`](https://github.com/eea/volto-slate/commit/305bf53ed9937e05d9ac8b1a90656addd07ebf80) -- Don't allow clicking the link in the editor [`617d19c`](https://github.com/eea/volto-slate/commit/617d19ce503ca3f0aab6ebbe516e400dc40ec384) - -#### [3.1.0](https://github.com/eea/volto-slate/compare/3.1.0-alpha.1...3.1.0) - -> 14 September 2021 - -- Release 3.1.0 - html widget fixes (#149) [`#152`](https://github.com/eea/volto-slate/pull/152) -- Upgrade to 3.x.x README update [`#151`](https://github.com/eea/volto-slate/pull/151) -- Release 3.0.0 [`#150`](https://github.com/eea/volto-slate/pull/150) -- Revert "Disable some cypress tests in order to be able to release" [`52ffee2`](https://github.com/eea/volto-slate/commit/52ffee2ba4fa586d3349be0e74ee687de5b2d069) - -#### [3.1.0-alpha.1](https://github.com/eea/volto-slate/compare/3.1.0-alpha.0...3.1.0-alpha.1) - -> 14 September 2021 - -- Add docs/ to npmignore [`8f2cd4d`](https://github.com/eea/volto-slate/commit/8f2cd4d4f4ebf317351fd4eab4229e7dc9a8e2ae) -- Add .npmignore [`e156af4`](https://github.com/eea/volto-slate/commit/e156af41c9cecd705622b8270154bcb834ee6b69) - -#### [3.1.0-alpha.0](https://github.com/eea/volto-slate/compare/3.0.1...3.1.0-alpha.0) - -> 14 September 2021 - -- Fix html widget [`#149`](https://github.com/eea/volto-slate/pull/149) -- Disable some cypress tests in order to be able to release [`7f93350`](https://github.com/eea/volto-slate/commit/7f93350d4e59ea2a770dee8eda26f4a491e5af6a) - -#### [3.0.1](https://github.com/eea/volto-slate/compare/3.0.0...3.0.1) - -> 13 September 2021 - -- Upgrade to 3.x.x README update [`#151`](https://github.com/eea/volto-slate/pull/151) -- Upgrade to 3.x.x [`e059861`](https://github.com/eea/volto-slate/commit/e0598619129614feddc9160011480eafa15d957c) - -#### [3.0.0](https://github.com/eea/volto-slate/compare/3.0.0-alpha.0...3.0.0) - -> 10 September 2021 - -- Release 3.0.0 [`#150`](https://github.com/eea/volto-slate/pull/150) -- Fix cypress api_url [`596cbfb`](https://github.com/eea/volto-slate/commit/596cbfbf1d1820c28faa1ea178ee05a2b6a72f9c) - -#### [3.0.0-alpha.0](https://github.com/eea/volto-slate/compare/2.9.3...3.0.0-alpha.0) - -> 9 September 2021 - -- Cypress - refactoring / reorganize [`#148`](https://github.com/eea/volto-slate/pull/148) -- Slate widget with HTML backend data [`#146`](https://github.com/eea/volto-slate/pull/146) -- Code cleanup, use better method of detecting text blocks [`#144`](https://github.com/eea/volto-slate/pull/144) -- Cleanup the text normalization stages [`#143`](https://github.com/eea/volto-slate/pull/143) -- Fix volto-object-widget dependency pin [`d72ebdd`](https://github.com/eea/volto-slate/commit/d72ebddee1e25afdc188d39c953796d2e94ced2e) -- Cypress increase timeout and retries [`c8ff87c`](https://github.com/eea/volto-slate/commit/c8ff87c38e304661c348a7590dad994fa700bdb2) -- Reduce cypress timeout and retries [`ee28f67`](https://github.com/eea/volto-slate/commit/ee28f67f0022f44cce58d9b5423770f9e8320369) -- Add cypress tests for Slate JSON Field metadata [`c2460d9`](https://github.com/eea/volto-slate/commit/c2460d9e6fec7e90c9c0eefb6f43f9b994588b74) -- Fix deconstructToVoltoBlocks conditions [`887ec31`](https://github.com/eea/volto-slate/commit/887ec312e02e0ca56e17de423a078024ca8e6a24) -- Cypress retry 3 times before fail [`dd4762b`](https://github.com/eea/volto-slate/commit/dd4762bbd59195e7de7803b4432ab7f75568ee56) -- Fix deserialize.js [`aef31f1`](https://github.com/eea/volto-slate/commit/aef31f14c599a8dd5fbc3d78de6772080142abb6) -- Fix isNotTextBlock condition [`d20aa43`](https://github.com/eea/volto-slate/commit/d20aa43d65e7e79f9d64fa3075fb1751bb06c07a) -- Fix list items style within sidebar metadata editor [`3044370`](https://github.com/eea/volto-slate/commit/3044370593b24753acc5b2b0b633353d84b783f5) -- Code cleanup [`1770743`](https://github.com/eea/volto-slate/commit/177074371e00eba400181b5827592e1537786821) -- Be more safe with list handling out of blocks [`4921e1e`](https://github.com/eea/volto-slate/commit/4921e1ec90d1edfeda546b1cab005b3ddb129520) -- Be more safe with list handling out of blocks [`f996057`](https://github.com/eea/volto-slate/commit/f99605792c002396ddd83c0d1264cd31374c9ea1) -- Remove unused import [`c0bb6b5`](https://github.com/eea/volto-slate/commit/c0bb6b534199a9438860467bb4621e9d95c7b2ad) -- Fix table cell selection [`405db60`](https://github.com/eea/volto-slate/commit/405db601fcebbbdffe33793dc9766c64786a438b) -- Remove DEPRECATED PageLinkSchema. Not used [`55bfdf7`](https://github.com/eea/volto-slate/commit/55bfdf7b4bc801b43d2610bb5e1121e272c8581f) -- Fix linting [`efcceb4`](https://github.com/eea/volto-slate/commit/efcceb46a227ca86d9eaae688e51694d210f78fd) -- Remove DEPRECATED ObjectBrowserWidget. Moved to Volto core [`97c8d15`](https://github.com/eea/volto-slate/commit/97c8d1503a1ad11869635ed1c86c57594af5c6f8) -- Remove DEPRECATED ObjectWidget from futurevolto. Moved to Volto core [`bc38505`](https://github.com/eea/volto-slate/commit/bc38505c656f689b4ca70eebd4fd29ad0cbfd491) -- Remove DEPRECATED Blocks helpers and SidebarPopup [`3edf6a8`](https://github.com/eea/volto-slate/commit/3edf6a88604080091c70b560e03116b684945ad5) -- Add SlateRichtextWidgetView to be used with metadata block/mentions [`369f7ef`](https://github.com/eea/volto-slate/commit/369f7ef73d1bc64841a6d14b11594e9a3ad1f651) -- BREAKING - Remove table button from defaults [`945a13a`](https://github.com/eea/volto-slate/commit/945a13a257ef4d2edfa751fe4f91af07ac243f3a) -- Remove duplicate blockquote button within toolbar [`346620f`](https://github.com/eea/volto-slate/commit/346620ff5de6f4c45f9d48624401c72ebb58ac92) -- Support new metadata fields on old content [`e4c7f9d`](https://github.com/eea/volto-slate/commit/e4c7f9ddc6e67b18baaff0ea1379379055a32168) -- Register slate widget to be used with DX metadata [`c98f6c0`](https://github.com/eea/volto-slate/commit/c98f6c0e07bfc26278a2bb4dade79f83036c2a6f) -- Add Lock-Token to default CORS allow_headers [`57f7f95`](https://github.com/eea/volto-slate/commit/57f7f9506662dbe1f777328d55ce61250061713a) - -#### [2.9.3](https://github.com/eea/volto-slate/compare/2.9.2...2.9.3) - -> 26 August 2021 - -- Release [`#139`](https://github.com/eea/volto-slate/pull/139) -- Add EditorReference component, fix interaction with table cells [`#138`](https://github.com/eea/volto-slate/pull/138) - -#### [2.9.2](https://github.com/eea/volto-slate/compare/2.9.1...2.9.2) - -> 24 August 2021 - -- Develop [`#136`](https://github.com/eea/volto-slate/pull/136) -- Fix toolbar position in Link plugin [`#135`](https://github.com/eea/volto-slate/pull/135) -- I18n [`#119`](https://github.com/eea/volto-slate/pull/119) -- Update docker files [`#134`](https://github.com/eea/volto-slate/pull/134) -- Use BlockChooserButton component [`#133`](https://github.com/eea/volto-slate/pull/133) -- cy wait 1000 [`6cd4ec1`](https://github.com/eea/volto-slate/commit/6cd4ec188d652c3c43978fd1612560ad36aa7a89) -- Better fix [`46822c0`](https://github.com/eea/volto-slate/commit/46822c0cf5c8b9603d714b46ebb17cb4544bd807) -- Don't overoptimize calculate toolbar position [`bc28375`](https://github.com/eea/volto-slate/commit/bc283750c8f37855ace5e9e9b3ee2512996b1166) -- Merge develop [`03f842c`](https://github.com/eea/volto-slate/commit/03f842cddf65425077b0258536009ccedd64323e) -- Imrpove docker-compose.yml [`428b568`](https://github.com/eea/volto-slate/commit/428b568f4a762ad90ffdd5b9f0379271b88dc975) -- Fix tests [`008922d`](https://github.com/eea/volto-slate/commit/008922d57bfae3020123a8117e786c669e602fa8) -- Rename babel.config to make tests pass [`28d3c71`](https://github.com/eea/volto-slate/commit/28d3c719c88e46f59b715ef85aafedfc1e3283b1) -- Set NODE_ENV to production [`a7eb4ef`](https://github.com/eea/volto-slate/commit/a7eb4ef9e4d8cc01aaae6a0935b8df8a21abc0e5) -- Update snapshot [`b3beebf`](https://github.com/eea/volto-slate/commit/b3beebf7c7f0c7518c0cccc5bcb8f6db3fdb162a) -- Add i18n artifacts [`7d25290`](https://github.com/eea/volto-slate/commit/7d2529020afb72ba2a558085fbb5c6786153f15e) -- WIP on i18n [`d48e979`](https://github.com/eea/volto-slate/commit/d48e9791131cb2a4f1a32c5da3b90d69169bba45) - -#### [2.9.1](https://github.com/eea/volto-slate/compare/2.9.0...2.9.1) - -> 13 August 2021 - -- Release [`#132`](https://github.com/eea/volto-slate/pull/132) -- add handle to unwrap note if empty string [`#129`](https://github.com/eea/volto-slate/pull/129) -- Set CSS class according inline style menu selection paragraph style [`#111`](https://github.com/eea/volto-slate/pull/111) - -#### [2.9.0](https://github.com/eea/volto-slate/compare/2.8.3...2.9.0) - -> 10 August 2021 - -- Release [`#130`](https://github.com/eea/volto-slate/pull/130) -- set-up for before insert data [`#128`](https://github.com/eea/volto-slate/pull/128) -- Table cell focusing [`#123`](https://github.com/eea/volto-slate/pull/123) -- Handle the case where user wants to toggle off a list [`#124`](https://github.com/eea/volto-slate/pull/124) -- Bump version to 2.9.0 [`0944dd3`](https://github.com/eea/volto-slate/commit/0944dd37bc2caa928521bb2e246ab8ebdc79c1d4) -- Cypress on focus fix [`ee591f0`](https://github.com/eea/volto-slate/commit/ee591f0cdf5b67600b77f80012b3597d98c260a1) -- Add tests for blocks utils: getAllBlocks [`46ffea2`](https://github.com/eea/volto-slate/commit/46ffea2ff28bd7f1bbe072f9992563984dc22202) -- Update snapshot [`0643c84`](https://github.com/eea/volto-slate/commit/0643c84b32113eac533a90cf1409f1c3767b1e76) -- Update snapshot [`af3420c`](https://github.com/eea/volto-slate/commit/af3420c5f0c315916c733078129225c13fd2a43b) -- Code cleanup [`f922647`](https://github.com/eea/volto-slate/commit/f9226479a6fd986b0c41b3f8a2bad08ea45cdb1a) -- Code cleanup [`d32d75d`](https://github.com/eea/volto-slate/commit/d32d75d75104cd22c5ffb5ad3a489d5cabe2dc9b) -- Improve selection handling from cells [`9dc33ed`](https://github.com/eea/volto-slate/commit/9dc33ed119466fa7530446992228e8254dbea700) -- Checkpoint [`0ba753b`](https://github.com/eea/volto-slate/commit/0ba753be85ae4819875aea99314558e81585dbfd) -- WIP [`1b9e48e`](https://github.com/eea/volto-slate/commit/1b9e48e7438832fe5e263a39f21ed83814228d3b) -- WIP [`8430bee`](https://github.com/eea/volto-slate/commit/8430bee30bee64433e82fda827b1802ac7be3403) - -#### [2.8.3](https://github.com/eea/volto-slate/compare/2.8.2...2.8.3) - -> 19 July 2021 - -- Use <a> tag for links [`#120`](https://github.com/eea/volto-slate/pull/120) -- Fix simplelink plugin link editing [`#121`](https://github.com/eea/volto-slate/pull/121) -- Use <a> tag for links [`#118`](https://github.com/eea/volto-slate/pull/118) -- Use a link [`928bdc1`](https://github.com/eea/volto-slate/commit/928bdc157cf14b9975a19184c4d56cbc86b40b94) - -#### [2.8.2](https://github.com/eea/volto-slate/compare/2.8.1...2.8.2) - -> 12 July 2021 - -- Deserialize break, debounce select [`#117`](https://github.com/eea/volto-slate/pull/117) -- Deserialize break properly [`#110`](https://github.com/eea/volto-slate/pull/110) -- Debounce on select state update [`#113`](https://github.com/eea/volto-slate/pull/113) -- Update SlateEditor.jsx [`6e88544`](https://github.com/eea/volto-slate/commit/6e885440dd603536809cd822b6aa73acbb917e78) -- fix quotes [`205d2bc`](https://github.com/eea/volto-slate/commit/205d2bcf965e7cd5d124d38ddad81dec8e125614) -- Lower timeout to 150 [`363652c`](https://github.com/eea/volto-slate/commit/363652c2e891efc8c6be265e62489bb4ba0239ca) - -#### [2.8.1](https://github.com/eea/volto-slate/compare/2.8.0...2.8.1) - -> 1 July 2021 - -- Release Keyboard for detached mode and extras metadata in view mode [`#116`](https://github.com/eea/volto-slate/pull/116) -- Pass metadata extras to Element in view mode [`#115`](https://github.com/eea/volto-slate/pull/115) -- Add keyboard handler for detached mode (adds shift+enter soft break a… [`#114`](https://github.com/eea/volto-slate/pull/114) -- Add keyboard handler for detached mode (adds shift+enter soft break as BR) [`e085b7b`](https://github.com/eea/volto-slate/commit/e085b7badd6655582a1cd13aa529432525b06c14) - -#### [2.8.0](https://github.com/eea/volto-slate/compare/2.7.2...2.8.0) - -> 24 June 2021 - -- Fix Slate to slate paste [`#107`](https://github.com/eea/volto-slate/pull/107) -- Use DOM styling to improve speed of show/hide toolbar [`#96`](https://github.com/eea/volto-slate/pull/96) -- - Fix slate to slate paste [`#104`](https://github.com/eea/volto-slate/pull/104) -- Split test command into test and test:fix [`de71caf`](https://github.com/eea/volto-slate/commit/de71cafd5cbf847f61a3b633250528c3c650010b) -- Add test within scripts and makefile [`1f35a6e`](https://github.com/eea/volto-slate/commit/1f35a6ec017d279f543a97e11336104b30349bc8) -- Bump release [`aa8b131`](https://github.com/eea/volto-slate/commit/aa8b1316da195f16393e814e05fa909868a66df4) -- Refactor cypress tests [`3258dc2`](https://github.com/eea/volto-slate/commit/3258dc2c5414b9215ad3d5b020c67336ddb3e87c) -- Wait for resources to load [`5fa3325`](https://github.com/eea/volto-slate/commit/5fa3325c22ce52d0abe431c714418b993f5355fd) -- Refs #101 - Cypress integration test block focusing [`98e7617`](https://github.com/eea/volto-slate/commit/98e7617ce3e3e7bfc866f9a9044ea28e20fbccd9) -- Make the toolbar responsiveness a lot better [`d7eb5bd`](https://github.com/eea/volto-slate/commit/d7eb5bdce12bda520d7d539c8acf50293c685a25) -- Use a setTimeout on click event [`b25d706`](https://github.com/eea/volto-slate/commit/b25d706109fd992e2388aa6e041a15bdfcc407ba) -- Remove unneeded code; don't pass withBlockProperties to detached mode widget [`28be533`](https://github.com/eea/volto-slate/commit/28be5336eef0b5e1f069998994f6a11f3c7d7c20) -- Don't enable detached for disableNewBlocks; need confirmation for this behavior [`c7504e5`](https://github.com/eea/volto-slate/commit/c7504e514145c5a758f6ede4efe356943b087d48) -- Avoid eslint problems [`4e757fc`](https://github.com/eea/volto-slate/commit/4e757fc9b561d1282a937cd4708487b1ee66a9e1) -- Disable eslint for line [`c2bb2b5`](https://github.com/eea/volto-slate/commit/c2bb2b564755ccd7e8918fcc5fbc897baf006934) -- Better handling of whitespace in pasting [`47b2e5d`](https://github.com/eea/volto-slate/commit/47b2e5d663e3b3275db89ac71e6823bdb6d7f575) -- Fix slate to slate copy/paste [`4c66a50`](https://github.com/eea/volto-slate/commit/4c66a503988be0473810cd0eed98e598e017c873) - -#### [2.7.2](https://github.com/eea/volto-slate/compare/2.7.1...2.7.2) - -> 18 June 2021 - -- Fix dependencies [`#105`](https://github.com/eea/volto-slate/pull/105) - -#### [2.7.1](https://github.com/eea/volto-slate/compare/2.7.0...2.7.1) - -> 18 June 2021 - -- Updated offset for HashLink scroll behavior [`#103`](https://github.com/eea/volto-slate/pull/103) -- Fix UniversalLink openLinkInNewTab invalid string [`89bede0`](https://github.com/eea/volto-slate/commit/89bede0497f8769500e41cc4fcd1a6914d35b688) -- Added parentId to Blocks chooser [`eebd292`](https://github.com/eea/volto-slate/commit/eebd292431a54f476a009c795f3cfa4b8f0b1b52) - -#### [2.7.0](https://github.com/eea/volto-slate/compare/2.6.4...2.7.0) - -> 13 June 2021 - -- Remove deprecated InlineForm [`#99`](https://github.com/eea/volto-slate/pull/99) -- Detached mode for slate [`#97`](https://github.com/eea/volto-slate/pull/97) -- Remove deprecated InlineForm [`#94`](https://github.com/eea/volto-slate/pull/94) -- Bump minor release [`b1276fe`](https://github.com/eea/volto-slate/commit/b1276fe0a092ac1ee76c08775e8ee31ec540afa9) -- Fix handleKey [`accaa6e`](https://github.com/eea/volto-slate/commit/accaa6e8bf3a8539835c8921607925cf4891c7ed) -- Add slate editor detached mode [`251f7df`](https://github.com/eea/volto-slate/commit/251f7dfbb02e7d32c602f096a35ae14414facfd4) -- Add detached mode slate editor [`6d604f6`](https://github.com/eea/volto-slate/commit/6d604f639c5629479077788087bcb02fb8e6bb8a) - -#### [2.6.4](https://github.com/eea/volto-slate/compare/2.6.3...2.6.4) - -> 12 June 2021 - -- Replace useLayoutEffect with useIsomorphicLayoutEffect [`#98`](https://github.com/eea/volto-slate/pull/98) -- Add missing id to getAllBlocks helper method [`3cf42e1`](https://github.com/eea/volto-slate/commit/3cf42e11399b4be86f9b807219d01d6131df66f9) -- Add helper method volto-slate/utils getAllBlocks [`b996af6`](https://github.com/eea/volto-slate/commit/b996af63a03b6daa87f53ff5dacb8212b2e97705) - -#### [2.6.3](https://github.com/eea/volto-slate/compare/2.6.2...2.6.3) - -> 9 June 2021 - -- Remove mousedown handler [`#95`](https://github.com/eea/volto-slate/pull/95) - -#### [2.6.2](https://github.com/eea/volto-slate/compare/2.6.1...2.6.2) - -> 7 June 2021 - - -#### [2.6.1](https://github.com/eea/volto-slate/compare/2.6.0...2.6.1) - -> 2 June 2021 - -- Improve list handling [`#88`](https://github.com/eea/volto-slate/pull/88) -- Release 2.6.1 [`539ce09`](https://github.com/eea/volto-slate/commit/539ce0995eb1b25da7e08e1378ee0b4096669b8a) -- Add extra condition [`d45c7da`](https://github.com/eea/volto-slate/commit/d45c7dac6d882d952905db8a4fb31fc8191943df) -- Improve normalization of blocks in lists [`0611f24`](https://github.com/eea/volto-slate/commit/0611f2419dc2cc09521b466b2a1e2e12e6c4f606) - -#### [2.6.0](https://github.com/eea/volto-slate/compare/2.5.0...2.6.0) - -> 28 May 2021 - -- Normalizing improvements, based on nonreact toolbar [`#85`](https://github.com/eea/volto-slate/pull/85) -- Fix add button always present, and small fixes in the simple link plu… [`#83`](https://github.com/eea/volto-slate/pull/83) -- Release 2.6.0 [`8879dd3`](https://github.com/eea/volto-slate/commit/8879dd3ae1e312b7ed522f5fcad55cb2ebe6fa36) -- Use visibility sensor [`27b3ecc`](https://github.com/eea/volto-slate/commit/27b3ecc908fe8c10a841d32c98515d66f14da975) -- Refactor, WIP [`448ec90`](https://github.com/eea/volto-slate/commit/448ec9024370b9ce1d1f89e8ec85af19907f2fb6) -- Somewhat improve table pasting [`283e1e8`](https://github.com/eea/volto-slate/commit/283e1e89c67a0505189d5da791a4b03a05e51622) -- Improve code tag deserializer [`2df5e35`](https://github.com/eea/volto-slate/commit/2df5e35670cb415e8cbe6585d8cf3f6c2042b141) -- Improve block normalizing [`98ac956`](https://github.com/eea/volto-slate/commit/98ac95665a3ea0bc155f0a1f9f446f50fe43c0a4) -- Fix tests [`da48467`](https://github.com/eea/volto-slate/commit/da48467326ffdd4161cbe6a3b6c51d63733d9f82) -- Fix simple link pasting [`ae86a53`](https://github.com/eea/volto-slate/commit/ae86a530f86abc661e61c3286aa8a101cd9d38ac) -- Don't let <TAB> traverse blocks; improve handling of span in pasting [`b87c692`](https://github.com/eea/volto-slate/commit/b87c692ddc3b448e12c0f416e46b087b6c08cc4a) -- Implement the simple link deserializer [`7e63bfa`](https://github.com/eea/volto-slate/commit/7e63bfa7e2fa34e77422f242ee7050540d3f1546) -- Work on normalization [`5a48fda`](https://github.com/eea/volto-slate/commit/5a48fda9e82d77d1d2696be443541cdee1d9a007) -- Improve list headling [`5fa9a52`](https://github.com/eea/volto-slate/commit/5fa9a529f295d3b34bb2d826dc522c97a4f8dbfa) -- remove dependencies [`c8923bc`](https://github.com/eea/volto-slate/commit/c8923bccb3cda3bc7e140d86833d7741edbd091d) -- Better toolbar [`f5c7c54`](https://github.com/eea/volto-slate/commit/f5c7c54ea7ee592eef5fb8742e38f4e5aea72a7d) -- Better toolbar [`3cbb4c1`](https://github.com/eea/volto-slate/commit/3cbb4c11363f12c505f8aae70bead8849eb05149) -- Make the toolbar more responsive [`68f2717`](https://github.com/eea/volto-slate/commit/68f2717a2342c6cc0d706354119eefb349519529) -- Fix add button always present, and small fixes in the simple link plugin CSS components [`6497285`](https://github.com/eea/volto-slate/commit/64972859c1a8e47376280994ae094aa07ab46358) -- Fix add button always present, and small fixes in the simple link plugin CSS components [`3b7169a`](https://github.com/eea/volto-slate/commit/3b7169ad010e92c9053434df509d6daed6c75239) -- Fix profile name [`792b077`](https://github.com/eea/volto-slate/commit/792b077c2f593089e97dd7f6c372b6c1787a5f1f) - -#### [2.5.0](https://github.com/eea/volto-slate/compare/2.4.3...2.5.0) - -> 26 May 2021 - -- Improve coverage and more [`#82`](https://github.com/eea/volto-slate/pull/82) -- Improve coverage [`#81`](https://github.com/eea/volto-slate/pull/81) -- Simple link plugin [`#79`](https://github.com/eea/volto-slate/pull/79) -- move cypress results to cypress/reports [`728530b`](https://github.com/eea/volto-slate/commit/728530b7173908be9efc31c7a12bfcf871973611) -- Major release 2.5.0 [`def082b`](https://github.com/eea/volto-slate/commit/def082befc4939dfec15afea2fe11e272fc346b0) -- Add simpleLink addon profile [`81dcda9`](https://github.com/eea/volto-slate/commit/81dcda917a8a7e9fcbf55be111acc848f6636674) -- Update snapshot [`692df9b`](https://github.com/eea/volto-slate/commit/692df9b96f18e6d806235c905e9613c9a7f17fae) -- Remove unused import [`e9d776b`](https://github.com/eea/volto-slate/commit/e9d776bf3e64669cf6a14c46508e1eb6960ba08c) -- code cleanup [`0e5a48a`](https://github.com/eea/volto-slate/commit/0e5a48a85e6fff80dea58c016ee34f9cce20607b) -- test only cypress coverage [`8e8395d`](https://github.com/eea/volto-slate/commit/8e8395d9b86e412c88d2b42623312570f5ace80f) -- remove debug info, fix path [`8fdd77a`](https://github.com/eea/volto-slate/commit/8fdd77aee29f55b2224dab33946ab2607be5d42a) -- add debug [`749e367`](https://github.com/eea/volto-slate/commit/749e36748a737766188409763131e4e7de499a42) -- Add code coverage [`4f5d29d`](https://github.com/eea/volto-slate/commit/4f5d29de0533c47f062e48372b4047edd63d5ad4) -- remove unused code on post [`9806f56`](https://github.com/eea/volto-slate/commit/9806f563e97861e91c18e41d304f6462c7cef801) -- fix empty stash [`5ba2a14`](https://github.com/eea/volto-slate/commit/5ba2a14898f52de38d0133efb98035dca5779aae) -- add coverage report [`30c8a89`](https://github.com/eea/volto-slate/commit/30c8a89dea45500fa18032c83b8c17f28536bbe9) -- Add missing module [`6ec6218`](https://github.com/eea/volto-slate/commit/6ec6218ea390e1ad2f5dc5b86f72eb0cfc5b52f5) -- Use normalization to handle list rules [`7caaa7c`](https://github.com/eea/volto-slate/commit/7caaa7c2ec56909312c8f89d5b5eb451eeae8945) -- Add a try/catch [`5f8bc6e`](https://github.com/eea/volto-slate/commit/5f8bc6e3ea024c512688b10678198be315e5c747) -- Add back var definition [`9db899e`](https://github.com/eea/volto-slate/commit/9db899e44c4174a4ab1fe7f7c04a0284d1c0a44d) -- WIP [`dadcceb`](https://github.com/eea/volto-slate/commit/dadcceb9ab65f96ff641432ccc9ea3ef11e43f22) -- Don't try to lift li nodes at shallow paths [`6bb55de`](https://github.com/eea/volto-slate/commit/6bb55defc291670d884f6d31b4b218f4408c0fb6) -- Force update [`0d6d080`](https://github.com/eea/volto-slate/commit/0d6d0800c8c5b3948d6efaa7291429bda1f0fac9) -- Code cleanup [`9612a98`](https://github.com/eea/volto-slate/commit/9612a98cb8f0b7adbef65396eb252e4b201edf7d) -- Add callout plugin [`3eb7fea`](https://github.com/eea/volto-slate/commit/3eb7feaed5a42fb10cdd6d6acaa7a85ca6a09f78) -- Use unlink item when link is active [`af3e4e0`](https://github.com/eea/volto-slate/commit/af3e4e065fe7bfbc72fd0a05a1f01663a9c9563f) -- Make the toolbar better behaved [`2a5e61a`](https://github.com/eea/volto-slate/commit/2a5e61ad3db9ecc0b1240b802c43f3b2f404a0bf) -- Add link rendering; improve add form handling [`84f495f`](https://github.com/eea/volto-slate/commit/84f495facf23231c6fc05867cd8beb3fecee8080) -- Rollback [`b0bb09a`](https://github.com/eea/volto-slate/commit/b0bb09a8b102560e5bbc05a0725895f9bae82779) -- Improve handling of click outside addlinkform [`5195792`](https://github.com/eea/volto-slate/commit/5195792beffdf27a43895f100eb9ebc1e109dc57) -- Improve highlight of selection in link element [`ddebc39`](https://github.com/eea/volto-slate/commit/ddebc39e92d0bc40b3bdd8bc57db1d17b6dcd8d1) -- Use intl in link button [`6f95301`](https://github.com/eea/volto-slate/commit/6f95301183586d941873dc86db82920496c8c9af) -- Improve link plugin [`f1ca1b1`](https://github.com/eea/volto-slate/commit/f1ca1b12d3baab09bff1339475f7445304a892fc) -- Rename FixedToolbar - PositionedToolbar [`7c12411`](https://github.com/eea/volto-slate/commit/7c124112184a551ddfb4b896c44616d28bb9622b) -- Add SimpleLink WIP [`10e66c3`](https://github.com/eea/volto-slate/commit/10e66c3a6fa3c68e7a61f8d63ce94c80d488ec34) -- Add SimpleLink WIP [`e2f06ad`](https://github.com/eea/volto-slate/commit/e2f06adac52c41291b093ce5b2b97df3d55eb8d9) -- try 2 junit commands [`d2a0c36`](https://github.com/eea/volto-slate/commit/d2a0c36fee52ce62f1dbd81bb31661a4703a1843) -- Add SimpleLink WIP [`fcd53e7`](https://github.com/eea/volto-slate/commit/fcd53e7cb8e2abc40076bdb81842d99e85392be1) -- specify junit format [`d58c9bc`](https://github.com/eea/volto-slate/commit/d58c9bcfaef5c727bc9202599e6797138e3b89f2) -- fix junit unstash [`ed478b8`](https://github.com/eea/volto-slate/commit/ed478b8f8e809f7ceb3b6056a890d2502988fbd9) -- add junit tests from cypress [`cb32875`](https://github.com/eea/volto-slate/commit/cb3287503db61bc6b5cbe96234488321f7ac9c1f) -- Add simplelink WIP [`e56b5e3`](https://github.com/eea/volto-slate/commit/e56b5e372bda3efaece2211d16140e75d9fd5b8d) - -#### [2.4.3](https://github.com/eea/volto-slate/compare/2.4.2...2.4.3) - -> 12 May 2021 - -- fixed issue with decoration not being removed if user does not add any data on a new element [`#76`](https://github.com/eea/volto-slate/pull/76) -- Cypress [`d143b6b`](https://github.com/eea/volto-slate/commit/d143b6b60bf31a40821a12762cbae08604a9fcc8) -- put integration archiving in double try/finally [`c81375e`](https://github.com/eea/volto-slate/commit/c81375eea84f5d9ff19ec0fa02f8d7ea05427d60) -- fixed issue with decoration not being removed if user does not add any data on a new element, also should not remove if the user does not change an existing [`6a38aa8`](https://github.com/eea/volto-slate/commit/6a38aa804e3d62cbbca9f0375f09eb4fa0f85595) - -#### [2.4.2](https://github.com/eea/volto-slate/compare/2.4.1...2.4.2) - -> 21 April 2021 - -- Make option if toolbar is floating or fixed on top of the block configurable [`#71`](https://github.com/eea/volto-slate/pull/71) -- Release 2.4.2 [`5b9a4ec`](https://github.com/eea/volto-slate/commit/5b9a4ec5c19eb7e0f8c0a0f2822b7de53d46867a) -- Make it possible to use tab key to traverse between slate blocks [`05bd772`](https://github.com/eea/volto-slate/commit/05bd7720667d927587e9b7691ad9de5805edbedb) -- renaming: showExpandedToolbar [`4d9de27`](https://github.com/eea/volto-slate/commit/4d9de27841b930834b34360bba46c54a06647102) - -#### [2.4.1](https://github.com/eea/volto-slate/compare/2.4.0...2.4.1) - -> 20 April 2021 - -- Plaintext (serializeNodesToText): join text of node with separating spaces: separate list items [`#68`](https://github.com/eea/volto-slate/pull/68) -- Improve toolbar handling when selecting text from keyboard [`#72`](https://github.com/eea/volto-slate/pull/72) -- Release 2.4.1 [`2f148f9`](https://github.com/eea/volto-slate/commit/2f148f93560e4e29da54a568f3210f053fbc6a7c) -- Update develop [`d195d52`](https://github.com/eea/volto-slate/commit/d195d5216aa8ecce2fa46ccdfcf10079bfbf13e6) -- Rename showToolbar var => showExpandedToolbar [`799bde7`](https://github.com/eea/volto-slate/commit/799bde7173d02c51db4f631352a71257aedef503) -- Handle arrows in showing toolbar [`8ba7bbd`](https://github.com/eea/volto-slate/commit/8ba7bbd32d1a4a6a1f439d3a75cb8d852de90443) -- Some cleanup [`1ce048d`](https://github.com/eea/volto-slate/commit/1ce048d550d2064ca20b91243f72b305b73e28aa) -- Handle ctrl+a case [`46c7118`](https://github.com/eea/volto-slate/commit/46c71189043b32a0ffffca88a2b3c49e251cf189) -- Improve show of toolbar from keyboard [`cdeb468`](https://github.com/eea/volto-slate/commit/cdeb4685a24ae09ccc21917bdafcc70ca0ac0491) -- Upgrade slate to 0.62 [`d4bfdc2`](https://github.com/eea/volto-slate/commit/d4bfdc2e0b3cfde1811a34cdf6bd3bd275197756) -- Plaintext: join text of node with separating spaces: separate list items [`aa75e64`](https://github.com/eea/volto-slate/commit/aa75e6411d9430c97a5846a679b9de21cd7d4a1e) - -#### [2.4.0](https://github.com/eea/volto-slate/compare/2.3.1...2.4.0) - -> 7 April 2021 - -- Release 2.4.0 [`980aee8`](https://github.com/eea/volto-slate/commit/980aee84cbade3271261df97ee4666224a874a7f) -- Add support for onInsertBlock with BlockChooser [`7b1621a`](https://github.com/eea/volto-slate/commit/7b1621a53f66a75c0e2590804d4e6ce547217127) -- Revert "Add support for newId returned by onMutateBlock" [`85de73b`](https://github.com/eea/volto-slate/commit/85de73bc9aacc8db4ad104a16b7a818caed130a2) -- DEPRECATE futurevolto: InlineForm, Blocks helpers [`1a64495`](https://github.com/eea/volto-slate/commit/1a64495be0e6acfb5b0eaf469be670d2b6115835) -- Add support for newId returned by onMutateBlock [`0f806b5`](https://github.com/eea/volto-slate/commit/0f806b54327a5f91439c11f2735ef48c4919be1e) -- Refs #126375 pass blocksConfig to TextBlockEdit for block config changes: [`6641388`](https://github.com/eea/volto-slate/commit/66413882d3f4b6c3c0912b0f9fb61183ca33f058) - -#### [2.3.1](https://github.com/eea/volto-slate/compare/2.3.0...2.3.1) - -> 29 March 2021 - -- Release 2.3.1 [`3f533ec`](https://github.com/eea/volto-slate/commit/3f533ec0f8c067eac3727c59c4deccfa214cc565) -- Docs cosmetics [`6e59769`](https://github.com/eea/volto-slate/commit/6e59769da6ed01a03ea80d23a4ce58e2e140cdbf) -- Remove un-released eea.volto.slate dependency from docs [`0683ae6`](https://github.com/eea/volto-slate/commit/0683ae6c497a04376f19f7e557de6b68e9c601ba) - -#### [2.3.0](https://github.com/eea/volto-slate/compare/2.2.1...2.3.0) - -> 26 March 2021 - -- Deprecate SidebarPopup. Use it from @plone/volto [`#64`](https://github.com/eea/volto-slate/pull/64) -- Release 2.3.0 [`931e8d6`](https://github.com/eea/volto-slate/commit/931e8d6d6d1c9cd43a241fd6362ce07807c7c5e3) -- Update docs [`a5966b0`](https://github.com/eea/volto-slate/commit/a5966b00b070109793952229759efe630d2646a5) - -#### [2.2.1](https://github.com/eea/volto-slate/compare/2.2.0...2.2.1) - -> 23 March 2021 - -- Release 2.2.1 [`2e77a2b`](https://github.com/eea/volto-slate/commit/2e77a2bec56201a5ff9791e6aad9e8fa95e8d3ab) -- Remove sidebar instructions uppercase [`bb7d316`](https://github.com/eea/volto-slate/commit/bb7d31689d82967a0a80f61583b25806f543047f) -- Export Editor [`aa8cd7e`](https://github.com/eea/volto-slate/commit/aa8cd7eb8c77c32e9cd2fc555fba6c2372780d65) - -#### [2.2.0](https://github.com/eea/volto-slate/compare/2.1.0...2.2.0) - -> 22 March 2021 - -- Release 2.2.0 [`1012983`](https://github.com/eea/volto-slate/commit/1012983ebe09f6523871efbf693a8e8dd46ff0d8) -- Use link instead of button [`7972912`](https://github.com/eea/volto-slate/commit/79729121e308018cec14ef1b8f3fa8d39c1d649a) -- Scroll to element with offset [`b167f27`](https://github.com/eea/volto-slate/commit/b167f27bd3d9116fdaedd1392f5ecdb632b94afe) -- Prettier fix [`62b9312`](https://github.com/eea/volto-slate/commit/62b9312c773713903b28930072352acd268d1d41) -- Handle hashlink using redux [`b277219`](https://github.com/eea/volto-slate/commit/b277219939429258286758c74540a38b74e6bca3) -- Hash link [`eb16243`](https://github.com/eea/volto-slate/commit/eb16243eca0053ec22b39e06fa0471c2d0491079) -- Fix crash when dealing with a null link [`423f702`](https://github.com/eea/volto-slate/commit/423f7029b25495e86fb9004e057d2460877f3447) - -#### [2.1.0](https://github.com/eea/volto-slate/compare/2.0.1...2.1.0) - -> 8 March 2021 - -- Release 2.1.0 [`f2656e8`](https://github.com/eea/volto-slate/commit/f2656e87f1d4a880eaa68ea41cc609d5aea1f4e0) -- Cleanup dependencies [`f064aec`](https://github.com/eea/volto-slate/commit/f064aec9e4f1fad447a33f0cd87fe47f44ac8c91) -- Add info about the plone integration package [`d993c7c`](https://github.com/eea/volto-slate/commit/d993c7c5d1b2fe1de4283ec1769b861c49619ff8) -- Cleanup usage of internal link [`1f95aa8`](https://github.com/eea/volto-slate/commit/1f95aa83af2ee63f1bb3f2cb655d8a365a6100c1) -- Improve link plugin [`cf36771`](https://github.com/eea/volto-slate/commit/cf36771b7045aac0464930b83d2a77cb515b40ae) - -#### [2.0.1](https://github.com/eea/volto-slate/compare/2.0.0...2.0.1) - -> 1 March 2021 - -- Use universal link [`#63`](https://github.com/eea/volto-slate/pull/63) -- Use UniversalLink in Link plugin; Fix #55 [`#55`](https://github.com/eea/volto-slate/issues/55) -- Release 2.0.1 [`7f75fa7`](https://github.com/eea/volto-slate/commit/7f75fa77f78062661fba757a4bd16959b354c393) -- Auto release on npm [`2b1dd57`](https://github.com/eea/volto-slate/commit/2b1dd571996cd3e2a82f1a454c68575f9d1caa18) - -### [2.0.0](https://github.com/eea/volto-slate/compare/1.2.0...2.0.0) - -> 25 February 2021 - -- Volto 12 upgrade: ~/config -> @plone/volto/registry [`#62`](https://github.com/eea/volto-slate/pull/62) -- Make Makefile more generic [`#61`](https://github.com/eea/volto-slate/pull/61) -- Volto 12 compatibility [`#60`](https://github.com/eea/volto-slate/pull/60) -- Release 2.0.0 [`e058cc6`](https://github.com/eea/volto-slate/commit/e058cc64376e92a2430ec6c4fb00bffcd2c24976) -- Update dependency volto-object-widget to ^2.0.0 [`d7b7126`](https://github.com/eea/volto-slate/commit/d7b71269448cee15bcf3f2f905d6a594826d25f2) -- Lower coverage threshold [`3f17c87`](https://github.com/eea/volto-slate/commit/3f17c875f645ba7b318908bfc5b5ed20121649d3) -- Fix .eslintrc [`f4de03c`](https://github.com/eea/volto-slate/commit/f4de03c82acdd7a7dcd4ad88145dd355cd47c4b0) -- Upgrade tests ~/config to @/plone/volto/registry [`5077dcb`](https://github.com/eea/volto-slate/commit/5077dcb0eb1353a9bad1e717c4ea32063e9277e0) -- More makefile [`9a22edc`](https://github.com/eea/volto-slate/commit/9a22edcd81b4365c56ad93d1c8c6fe3366de03c7) -- Fix makefile [`5ac16cb`](https://github.com/eea/volto-slate/commit/5ac16cb7524df33997556e20bb9a378f1aba156c) -- Add makefile to bootstrap addon [`1cc6ade`](https://github.com/eea/volto-slate/commit/1cc6adefa49e3c07877f7f41b3135bffbc2f3a15) -- Add custom eslint configuration [`8871bfd`](https://github.com/eea/volto-slate/commit/8871bfd6faff0f4af4440104062d3a73dfbc6a71) -- Remove unneeded package [`d8cd82c`](https://github.com/eea/volto-slate/commit/d8cd82cd3195e36bf90f2e47131f94dff79d6bb9) -- Update for Volto 12 compatibility [`9594d78`](https://github.com/eea/volto-slate/commit/9594d78b2cace48a9eb0c1cfd142e8c3dcb0eb99) -- Remove bootstrap script [`e01a8fd`](https://github.com/eea/volto-slate/commit/e01a8fdaf43ef08af9bf078dd0326d75834647c3) -- Update CHANGELOG.md [`3b13c9e`](https://github.com/eea/volto-slate/commit/3b13c9e34e021f157e61b318dc849a76ea67f85a) - -#### [1.2.0](https://github.com/eea/volto-slate/compare/1.1.1...1.2.0) - -> 19 February 2021 - -- Removed Slate from Text and Table block title in asDefault profile [`#59`](https://github.com/eea/volto-slate/pull/59) -- Release 1.2.0 [`1aaac34`](https://github.com/eea/volto-slate/commit/1aaac34a06f28a47f888f18df53cb41284c49301) -- Use commit limit for this release [`3c70f8d`](https://github.com/eea/volto-slate/commit/3c70f8d80493428e326096eaa3c1d493394896b4) -- Use commit limit for this release [`018cf96`](https://github.com/eea/volto-slate/commit/018cf962fe9d2ce541459906fc2e2224fbd19524) -- Use a static changelog for this release [`244386a`](https://github.com/eea/volto-slate/commit/244386a3e64823cef0cf082141a11652973607be) -- Refs #126375 set within asDefault profile the Table and Text naming: [`4f56d4b`](https://github.com/eea/volto-slate/commit/4f56d4ba80f6522fbee858d22f3564b36dab787d) -- Refs #126375 revert also test upgrade [`f925217`](https://github.com/eea/volto-slate/commit/f92521724a20b47b5757f271122ffc4d4f3ff0cc) -- Refs #126375 revert devDependencies upgrade since the tests fail [`6825545`](https://github.com/eea/volto-slate/commit/68255457071f8a7bc47e12a85093d21d41f83db2) -- Refs #126375 attempt to fix tests after testing upgrade: [`d189d77`](https://github.com/eea/volto-slate/commit/d189d77c551fc94e32eee03bc45661e8b000ba67) -- Refs #126375 modified waitFor test [`6cff18a`](https://github.com/eea/volto-slate/commit/6cff18ac5b416d8a6162d373ed6d5e7f076827a9) -- Refs #126375 use waitFor as wait is deprecated and updated devDependencies for volto-slate [`8dbb012`](https://github.com/eea/volto-slate/commit/8dbb012c1a5b48941fe7aef06c8e1d6e647bf158) -- Refs #126375 cypress test should look For Text not Slate anymore [`e249337`](https://github.com/eea/volto-slate/commit/e2493378aab6f6a452bb279055f07266ed32500b) -- Refs #126375 prettier fixes for text index.js [`9d4d7cd`](https://github.com/eea/volto-slate/commit/9d4d7cd7bf242ab9d3f97a593ff4065b530956ff) -- Refs #126375 prettier fixes [`e21f81c`](https://github.com/eea/volto-slate/commit/e21f81c14409e13f5d4a3cc8c1d9f79fe4ff1669) -- #126375 renamed Slate -> Text, Slate Table -> Table [`24721c2`](https://github.com/eea/volto-slate/commit/24721c2721d47e434ca97bff62bce0bd1971d782) - -#### [1.1.1](https://github.com/eea/volto-slate/compare/1.1.0...1.1.1) - -> 8 February 2021 - -- Develop [`#57`](https://github.com/eea/volto-slate/pull/57) -- Correct paste behaviour, HTML paste works [`#56`](https://github.com/eea/volto-slate/pull/56) -- Release 1.1.1 [`a6b75c1`](https://github.com/eea/volto-slate/commit/a6b75c127b2cb112ec480c78eac9e6b6aba269d7) - -#### [1.1.0](https://github.com/eea/volto-slate/compare/1.0.7...1.1.0) - -> 26 January 2021 - -- render external link that starts with / with Link component of react… [`#51`](https://github.com/eea/volto-slate/pull/51) -- Release 1.1.0 [`3d5344c`](https://github.com/eea/volto-slate/commit/3d5344c8a3f6ccf4b8d2ff4ee70efed97414bd90) -- render external link starting with '/' with Link component of react-router-dom [`21619de`](https://github.com/eea/volto-slate/commit/21619de697d4f184421d6d7e025c54a3571dff8a) -- Revert "render external link that starts with / with Link component of react-router-dom" [`cd47e39`](https://github.com/eea/volto-slate/commit/cd47e39db2dc5491be22d5b8864b71d59bc9d5e1) -- render external link that starts with / with Link component of react-router-dom [`b73aa64`](https://github.com/eea/volto-slate/commit/b73aa6457f0f3933118334d48299268054f95d1d) - -#### [1.0.7](https://github.com/eea/volto-slate/compare/1.0.6...1.0.7) - -> 28 December 2020 - -- Improve DEVELOP.md instructions [`#54`](https://github.com/eea/volto-slate/pull/54) -- internal_link with Link of react-router-dom [`#50`](https://github.com/eea/volto-slate/pull/50) -- Release 1.0.7 [`e0daac9`](https://github.com/eea/volto-slate/commit/e0daac96b5fad0427c2ca8b6111c8d6a24b2829a) - -#### [1.0.6](https://github.com/eea/volto-slate/compare/1.0.5...1.0.6) - -> 16 December 2020 - -- Separate dev dependencies in package.json [`#48`](https://github.com/eea/volto-slate/pull/48) -- Release 1.0.6 [`1a22eae`](https://github.com/eea/volto-slate/commit/1a22eae5f7d488b0a04f414940a6459a10a9920f) -- Update docs with missing dependencies [`33cd98a`](https://github.com/eea/volto-slate/commit/33cd98ae9f2682a468fbc0ca9fdaa465050c1e24) - -#### [1.0.5](https://github.com/eea/volto-slate/compare/1.0.4...1.0.5) - -> 14 December 2020 - -- Prevent some potential bugs [`#42`](https://github.com/eea/volto-slate/pull/42) -- Rewrite the directory-structure.md within docs [`#47`](https://github.com/eea/volto-slate/pull/47) -- Prioritize MIME types from data transfers (If HTML is available, don't paste image but HTML) [`#43`](https://github.com/eea/volto-slate/pull/43) -- Make slate_richtext widget backward compatible [`#41`](https://github.com/eea/volto-slate/pull/41) -- Release 1.0.5 [`8ca68d4`](https://github.com/eea/volto-slate/commit/8ca68d4582860d951b4200dc22a8e35858cd6591) -- add sonar exclusions [`e28b1f1`](https://github.com/eea/volto-slate/commit/e28b1f11f674f01203c23065a55e6f06e6a80438) -- Remove useless dependencies, pass unit tests [`2734907`](https://github.com/eea/volto-slate/commit/27349074d6301898ded29cbd4a5a64d55f8fcb49) -- add exclusions [`3b71705`](https://github.com/eea/volto-slate/commit/3b717053271f7f7d853272c0c249d9b2de177417) -- Attempt to solve unit test errors [`b363ad1`](https://github.com/eea/volto-slate/commit/b363ad10d528e50af9f110322684b69116e8e7aa) -- Solve ~2 bugs, introduce 2 editor properties [`f33b04a`](https://github.com/eea/volto-slate/commit/f33b04ac9d8643fbf31de18d7e56c2cc6e784e3a) -- If HTML is available, don't paste image but HTML [`54a359e`](https://github.com/eea/volto-slate/commit/54a359e42cb7d3711fed3faca4252de795b91b79) -- Upgrade dependencies including jest for CI [`99c5ebe`](https://github.com/eea/volto-slate/commit/99c5ebe3211c3a4e3b0cb5cc5177636cfea304d3) -- deprecate wait [`9782f1b`](https://github.com/eea/volto-slate/commit/9782f1bf80b112def768f333c91cdc993d533dd8) -- deprecated wait [`712df48`](https://github.com/eea/volto-slate/commit/712df488f85f6399bc52bad76be2ecc0dddf451a) -- Tables pasted from G Sheets work better [`7dca99e`](https://github.com/eea/volto-slate/commit/7dca99e24e0b70f13c217498ec943d3c4c50bca6) -- Works now: Paste tables from Google Sheets into volto-slate [`a3beb99`](https://github.com/eea/volto-slate/commit/a3beb995655c05cd12530a4ca38633fe02ba3726) -- Tweak gitignore [`24b96fb`](https://github.com/eea/volto-slate/commit/24b96fb66089f8a038eaef8cf9bc0b15b7c06411) -- Update README.md [`d1fbb4d`](https://github.com/eea/volto-slate/commit/d1fbb4d6bccf7ba2ae6ba4564534f1c3696548e9) - -#### [1.0.4](https://github.com/eea/volto-slate/compare/1.0.3...1.0.4) - -> 2 December 2020 - -- Release 1.0.4 [`699c824`](https://github.com/eea/volto-slate/commit/699c82421dc48b1d45b8f88e5a2dff3013efa525) -- Fix dependencies versions [`e6bad78`](https://github.com/eea/volto-slate/commit/e6bad78f77b2ad9f4380017439efaaf533f05d5d) - -#### [1.0.3](https://github.com/eea/volto-slate/compare/1.0.2...1.0.3) - -> 2 December 2020 - -- Release 1.0.3 [`a620fd1`](https://github.com/eea/volto-slate/commit/a620fd1391150995005b057716f60222883a04ae) -- Update dev docs [`496f838`](https://github.com/eea/volto-slate/commit/496f8388a3150e2b9e7e93f0e7b9e40e1955ac87) - -#### [1.0.2](https://github.com/eea/volto-slate/compare/1.0.1...1.0.2) - -> 27 November 2020 - -- add additional classes to SlateToolbar [`#37`](https://github.com/eea/volto-slate/pull/37) -- Add dependency on @eeacms/volto-object-widget [`#39`](https://github.com/eea/volto-slate/pull/39) -- Develop [`#36`](https://github.com/eea/volto-slate/pull/36) -- Release 1.0.2 [`26cb765`](https://github.com/eea/volto-slate/commit/26cb7659719d19f48730fab7ea94a5080426f9a9) -- Publish release on npm [`ae664ce`](https://github.com/eea/volto-slate/commit/ae664ced4c9eca06443eedd21ec8fcbfec007f97) -- add more blockProps to RichTextWidget [`e072ba1`](https://github.com/eea/volto-slate/commit/e072ba13a23d4ded449fae1666cc66fe035b8764) - -#### [1.0.1](https://github.com/eea/volto-slate/compare/1.0.0...1.0.1) - -> 22 November 2020 - -- Remake GIFs with normal, larger speed [`#35`](https://github.com/eea/volto-slate/pull/35) -- Release 1.0.1 [`5ba1695`](https://github.com/eea/volto-slate/commit/5ba1695ad7cf51ab318fbd9c4e9c8f24b30fb58d) -- Add dependency on @eeacms/volto-object-widget [`0b6b7f4`](https://github.com/eea/volto-slate/commit/0b6b7f4a9ea459517cf0f31a6ceb4acf0aea4f93) - -### [1.0.0](https://github.com/eea/volto-slate/compare/0.9.3...1.0.0) - -> 16 November 2020 - -- Update screen captures [`#34`](https://github.com/eea/volto-slate/pull/34) -- Release 1.0.0 [`25b5b96`](https://github.com/eea/volto-slate/commit/25b5b96442c04cb468e82c3556e73bdc07533d05) -- Fix screen gif links [`65d8a7c`](https://github.com/eea/volto-slate/commit/65d8a7c7e85ac92e73312e178ebc2fe571a7df1c) -- Fix documentation [`a5080dd`](https://github.com/eea/volto-slate/commit/a5080ddd8564b71b4cc11a1d2b67e866b15e0f31) -- Update features and screen recordings in README.md [`ec55905`](https://github.com/eea/volto-slate/commit/ec5590515bdbaee9bf3d37a0f4b328ac8fbb8be1) -- try without exclusions [`de19839`](https://github.com/eea/volto-slate/commit/de1983999938db998129cf3b1de5bed9e0f0739b) -- try different exclusion [`a38b112`](https://github.com/eea/volto-slate/commit/a38b11232880b8359c0eda652dc501d3da74789c) -- exclude tests jsx [`a2f98c0`](https://github.com/eea/volto-slate/commit/a2f98c04238e2ad6d9c4d73bd59ed34790c74960) -- Rename unit test files from .jsx to .js [`a4062fb`](https://github.com/eea/volto-slate/commit/a4062fb65aa6cd13d1a5b52c80a7303e88c85bb4) -- All existing unit test are passed [`c471134`](https://github.com/eea/volto-slate/commit/c471134ff05ab6a4931256049dbf269302e68d65) -- Update docs [`1b737a6`](https://github.com/eea/volto-slate/commit/1b737a6fcde692eaccf4490fcf6defc137984fa1) -- Pass another unit test that previously was failed [`f395aa5`](https://github.com/eea/volto-slate/commit/f395aa53a9f5bbe2a605966bd9e027ecccab38a2) -- Pass unit test that previously was failed [`7dd38f8`](https://github.com/eea/volto-slate/commit/7dd38f8e687a977af00ddff1cffe91972c9d9a78) -- Correct an unit test [`60d340a`](https://github.com/eea/volto-slate/commit/60d340a841400b93da41a9eb45753e29192c7ba3) -- Small change for debugging [`60c2718`](https://github.com/eea/volto-slate/commit/60c27181a4693b1e0aa7d8fcabb6105f58815243) -- update pipeline to volto-widgets-view pipeline [`117e250`](https://github.com/eea/volto-slate/commit/117e25014510c7a1e6f923a7137866db178f60ad) -- Added eslint-disable comment to a file [`2528062`](https://github.com/eea/volto-slate/commit/25280620b8c3c047dbc9070417e4a383d187f854) -- Added a console.log for debugging [`fe65b90`](https://github.com/eea/volto-slate/commit/fe65b9012d6879cbb41cf4573e585f15065ea08a) -- Update README.md [`54a4a90`](https://github.com/eea/volto-slate/commit/54a4a9021c559a5d712cf1cc7f6db29a4908c5a1) -- Update README.md [`d93ca07`](https://github.com/eea/volto-slate/commit/d93ca0709173cd03e0539cd51de0df3720bbeefc) -- Repair code style errors in the previous commit [`05e1f09`](https://github.com/eea/volto-slate/commit/05e1f09e59ce0a5c907dc31fb20351e689d8aa11) -- Attempt to make Table/View.test.jsx functional [`bdb562d`](https://github.com/eea/volto-slate/commit/bdb562d9efeedbe6242bd5200f2574fd20a5170d) - -#### [0.9.3](https://github.com/eea/volto-slate/compare/0.9.2...0.9.3) - -> 9 November 2020 - -- Release 0.9.3 [`fcdd0ff`](https://github.com/eea/volto-slate/commit/fcdd0ffdf7ae5647001532d21384f8895ed85e34) -- CHANGELOG.md [`6c1a007`](https://github.com/eea/volto-slate/commit/6c1a0076ec9ce1907eeabaf670318d320ebf4df4) - -#### [0.9.2](https://github.com/eea/volto-slate/compare/0.9.1...0.9.2) - -> 2 November 2020 - -- Remove SidebarPopup z-index [`#31`](https://github.com/eea/volto-slate/pull/31) -- Develop [`#30`](https://github.com/eea/volto-slate/pull/30) -- Sync develop [`#25`](https://github.com/eea/volto-slate/pull/25) -- Release 0.9.2 [`d81f7bc`](https://github.com/eea/volto-slate/commit/d81f7bc078d9d9ed0c3b32198406a54237af2e32) -- Cleanup deprecated CHANGELOG [`d59ce34`](https://github.com/eea/volto-slate/commit/d59ce34cd158913faa84e834ead692f80799aed1) -- Fix release-it config [`70f468a`](https://github.com/eea/volto-slate/commit/70f468a03876ef9b9127f25ee2906cacf1d758dc) - -#### [0.9.1](https://github.com/eea/volto-slate/compare/0.9.0...0.9.1) - -> 30 October 2020 - -- Raise SidebarPopup so it's above main sidebar [`#29`](https://github.com/eea/volto-slate/pull/29) -- Strong em [`#28`](https://github.com/eea/volto-slate/pull/28) -- Use react-select from separate chunk [`#27`](https://github.com/eea/volto-slate/pull/27) -- Put SlateEditor above modal forms [`#26`](https://github.com/eea/volto-slate/pull/26) -- Remove about a dozen browser console warnings [`#24`](https://github.com/eea/volto-slate/pull/24) -- Make selection in Slate Text blocks work well with keyboard again [`#23`](https://github.com/eea/volto-slate/pull/23) -- Basic keyboard shortcuts work [`#21`](https://github.com/eea/volto-slate/pull/21) -- Block style buttons work again [`#20`](https://github.com/eea/volto-slate/pull/20) -- Remove package-lock.json [`ebdcd9f`](https://github.com/eea/volto-slate/commit/ebdcd9f7bdd38e4a4ea3d8ffcc28804da78262c7) -- Implement variable with format aliases [`590137f`](https://github.com/eea/volto-slate/commit/590137fdacb8b4ef1153d8eb9a96dc0fde313c49) -- Toolbar buttons and hotkeys work [`a6f2691`](https://github.com/eea/volto-slate/commit/a6f2691f136912c1b04653e1ab99557452a85dcb) -- Don't show hovering toolbar when there's just saved, not live, selection [`597e954`](https://github.com/eea/volto-slate/commit/597e9543b7fd4a12358b2f37844ad81fa946c76c) -- Omit also path from rendering in elements [`8facd99`](https://github.com/eea/volto-slate/commit/8facd996dfdb916ada14ad66a1e7e9e961da22f8) -- Remove obsolete comment [`6e07016`](https://github.com/eea/volto-slate/commit/6e0701612c883edfa722c3f2ff2262e77fc57632) -- Fix rendering of table blocks [`77a0768`](https://github.com/eea/volto-slate/commit/77a07687eac9283aa44b9961d2f4d619b4f922cc) -- Defensive code [`d48c360`](https://github.com/eea/volto-slate/commit/d48c360f6e590f0a85b1f74b3f8466a1430384ea) -- Add changelog [`237fdfd`](https://github.com/eea/volto-slate/commit/237fdfd4da27eb389b1a6add4869d032a5565ab2) -- Optimize output of serializer [`c907405`](https://github.com/eea/volto-slate/commit/c90740501b3fa34098e9a92d22e1a632acf6a6c5) -- Avoid editor prop from being rendered by elements [`9b6f2ef`](https://github.com/eea/volto-slate/commit/9b6f2ef56c1c18eaa32d4ed37bb5acb9ce6ad02f) -- Also set saved selection on slate editor update [`bed2bda`](https://github.com/eea/volto-slate/commit/bed2bda4dbb5c3c1b8f6640c32fb0c02952d8e52) -- Solve a browser console warning [`c3c339f`](https://github.com/eea/volto-slate/commit/c3c339f7fdaa29073e32e7f7c6d536d098b78449) -- Fix handling of selection in insertElement [`f3ea46a`](https://github.com/eea/volto-slate/commit/f3ea46a14766b5a90d278a55139bd1575486ef5d) -- Add style to the richtext widget [`ed7b35b`](https://github.com/eea/volto-slate/commit/ed7b35bc3e1a91b4c88dc498a560313048fb11ca) -- Remove warning [`fe8fbc3`](https://github.com/eea/volto-slate/commit/fe8fbc3bddc44971df96fcf57a237561b2e3ae42) -- Add comments [`87a7264`](https://github.com/eea/volto-slate/commit/87a726407f343bc9694e73cc0f0d5dffc922cc83) -- Make home/end keys work [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985) -- Make readOnly really work [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37) -- Correct mistake: removed readOnly prop from SlateEditor [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8) -- Add missing dependency react-visibility-sensor [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b) -- Reintroduce Dropzone and use it correctly [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62) -- Switch back read-only mode to true if another block is selected [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029) -- Use visibility sensor for SlateEditor [`a830fcf`](https://github.com/eea/volto-slate/commit/a830fcf8c293874fd6f39fa9a6ab904067cc010d) -- Adjust changelog [`94dbfe7`](https://github.com/eea/volto-slate/commit/94dbfe7447661ab9c546a97bfb3ef0d2b8085761) -- Temporarily remove dropzone from text editor [`9b2910d`](https://github.com/eea/volto-slate/commit/9b2910d4c69f557fc880d066a7ed67f31d7cc2d6) -- Comment out the shortcut for format 'code' [`4150826`](https://github.com/eea/volto-slate/commit/41508265396a1678e40eaba8cea9e43ab6f95b7c) -- Basic keyboard shortcuts work, UI string changes [`fe87a47`](https://github.com/eea/volto-slate/commit/fe87a47031807509ee3651535fb8d2e3a91813c1) -- Code cleanup [`99820b8`](https://github.com/eea/volto-slate/commit/99820b8ccb985c56a1afa04ce466f08260f2008b) -- Add support for native integration of block styles [`095fcea`](https://github.com/eea/volto-slate/commit/095fcea6b4db1adaccfa2dd0b9acf77fc4be5ddb) -- Fix toc entry [`f261dc9`](https://github.com/eea/volto-slate/commit/f261dc9a6f27a02088d0d73d4ac86551971f4149) -- Pass level as int [`6942c88`](https://github.com/eea/volto-slate/commit/6942c888efb043d59b619edd48371ec84affb5b2) -- Integrate with volto-block-toc [`96993a9`](https://github.com/eea/volto-slate/commit/96993a9674aef21aa0a3699dbddb90415279f690) -- It's easier to open the styles menu [`e6accdc`](https://github.com/eea/volto-slate/commit/e6accdc38ff1d6165527d85bababf18a938dd1e1) -- Moved all utilities of StyleMenu into StyleMenu directory [`cbb0779`](https://github.com/eea/volto-slate/commit/cbb07790a52853d5b161081e14b204ecb521c10e) -- Add changelog [`a713a78`](https://github.com/eea/volto-slate/commit/a713a78232b6c6a62c18c20dacc22602b68f418b) -- Add toc entry settings in text block [`d938391`](https://github.com/eea/volto-slate/commit/d938391670429d62306b38099d11845afa258f85) -- Improve paste handling when dealing with images [`27b5c81`](https://github.com/eea/volto-slate/commit/27b5c81c8515e662ccc4b9076c6480c0c2f8f4ca) -- Extract toggleStyle into utils/blocks.js [`ebd919f`](https://github.com/eea/volto-slate/commit/ebd919f336ed91545ebeb5cad303f1e394f93937) -- Improve paste handling, also handle plain text [`4cc2b54`](https://github.com/eea/volto-slate/commit/4cc2b54a685d90eb74eaef74f3217948d8e87893) - -#### [0.9.0](https://github.com/eea/volto-slate/compare/0.9.0-beta.5...0.9.0) - -> 7 October 2020 - -#### [0.9.0-beta.5](https://github.com/eea/volto-slate/compare/0.9.0-beta.4...0.9.0-beta.5) - -> 22 October 2020 - -- Use react-select from separate chunk [`#27`](https://github.com/eea/volto-slate/pull/27) -- Put SlateEditor above modal forms [`#26`](https://github.com/eea/volto-slate/pull/26) -- Don't show hovering toolbar when there's just saved, not live, selection [`597e954`](https://github.com/eea/volto-slate/commit/597e9543b7fd4a12358b2f37844ad81fa946c76c) -- Omit also path from rendering in elements [`8facd99`](https://github.com/eea/volto-slate/commit/8facd996dfdb916ada14ad66a1e7e9e961da22f8) -- Remove obsolete comment [`6e07016`](https://github.com/eea/volto-slate/commit/6e0701612c883edfa722c3f2ff2262e77fc57632) -- Fix rendering of table blocks [`77a0768`](https://github.com/eea/volto-slate/commit/77a07687eac9283aa44b9961d2f4d619b4f922cc) -- Defensive code [`d48c360`](https://github.com/eea/volto-slate/commit/d48c360f6e590f0a85b1f74b3f8466a1430384ea) - -#### [0.9.0-beta.4](https://github.com/eea/volto-slate/compare/0.9.0-beta.3...0.9.0-beta.4) - -> 19 October 2020 - -- Sync develop [`#25`](https://github.com/eea/volto-slate/pull/25) -- Add changelog [`237fdfd`](https://github.com/eea/volto-slate/commit/237fdfd4da27eb389b1a6add4869d032a5565ab2) -- Optimize output of serializer [`c907405`](https://github.com/eea/volto-slate/commit/c90740501b3fa34098e9a92d22e1a632acf6a6c5) - -#### [0.9.0-beta.3](https://github.com/eea/volto-slate/compare/0.9.0-beta.2...0.9.0-beta.3) - -> 18 October 2020 - -- Remove about a dozen browser console warnings [`#24`](https://github.com/eea/volto-slate/pull/24) -- Avoid editor prop from being rendered by elements [`9b6f2ef`](https://github.com/eea/volto-slate/commit/9b6f2ef56c1c18eaa32d4ed37bb5acb9ce6ad02f) -- Also set saved selection on slate editor update [`bed2bda`](https://github.com/eea/volto-slate/commit/bed2bda4dbb5c3c1b8f6640c32fb0c02952d8e52) -- Solve a browser console warning [`c3c339f`](https://github.com/eea/volto-slate/commit/c3c339f7fdaa29073e32e7f7c6d536d098b78449) -- Fix handling of selection in insertElement [`f3ea46a`](https://github.com/eea/volto-slate/commit/f3ea46a14766b5a90d278a55139bd1575486ef5d) -- Add style to the richtext widget [`ed7b35b`](https://github.com/eea/volto-slate/commit/ed7b35bc3e1a91b4c88dc498a560313048fb11ca) - -#### [0.9.0-beta.2](https://github.com/eea/volto-slate/compare/0.9.0-beta.1...0.9.0-beta.2) - -> 14 October 2020 - -- Make selection in Slate Text blocks work well with keyboard again [`#23`](https://github.com/eea/volto-slate/pull/23) -- Remove warning [`fe8fbc3`](https://github.com/eea/volto-slate/commit/fe8fbc3bddc44971df96fcf57a237561b2e3ae42) -- Add comments [`87a7264`](https://github.com/eea/volto-slate/commit/87a726407f343bc9694e73cc0f0d5dffc922cc83) -- Make home/end keys work [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985) -- Make readOnly really work [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37) -- Correct mistake: removed readOnly prop from SlateEditor [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8) -- Add missing dependency react-visibility-sensor [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b) -- Reintroduce Dropzone and use it correctly [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62) -- Switch back read-only mode to true if another block is selected [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029) -- Use visibility sensor for SlateEditor [`a830fcf`](https://github.com/eea/volto-slate/commit/a830fcf8c293874fd6f39fa9a6ab904067cc010d) - -#### [0.9.0-beta.1](https://github.com/eea/volto-slate/compare/0.8.2...0.9.0-beta.1) - -> 12 October 2020 - -- Basic keyboard shortcuts work [`#21`](https://github.com/eea/volto-slate/pull/21) -- Block style buttons work again [`#20`](https://github.com/eea/volto-slate/pull/20) -- Adjust changelog [`94dbfe7`](https://github.com/eea/volto-slate/commit/94dbfe7447661ab9c546a97bfb3ef0d2b8085761) -- Temporarily remove dropzone from text editor [`9b2910d`](https://github.com/eea/volto-slate/commit/9b2910d4c69f557fc880d066a7ed67f31d7cc2d6) -- Comment out the shortcut for format 'code' [`4150826`](https://github.com/eea/volto-slate/commit/41508265396a1678e40eaba8cea9e43ab6f95b7c) -- Basic keyboard shortcuts work, UI string changes [`fe87a47`](https://github.com/eea/volto-slate/commit/fe87a47031807509ee3651535fb8d2e3a91813c1) -- Code cleanup [`99820b8`](https://github.com/eea/volto-slate/commit/99820b8ccb985c56a1afa04ce466f08260f2008b) -- Add support for native integration of block styles [`095fcea`](https://github.com/eea/volto-slate/commit/095fcea6b4db1adaccfa2dd0b9acf77fc4be5ddb) -- Fix toc entry [`f261dc9`](https://github.com/eea/volto-slate/commit/f261dc9a6f27a02088d0d73d4ac86551971f4149) -- Pass level as int [`6942c88`](https://github.com/eea/volto-slate/commit/6942c888efb043d59b619edd48371ec84affb5b2) -- Integrate with volto-block-toc [`96993a9`](https://github.com/eea/volto-slate/commit/96993a9674aef21aa0a3699dbddb90415279f690) -- It's easier to open the styles menu [`e6accdc`](https://github.com/eea/volto-slate/commit/e6accdc38ff1d6165527d85bababf18a938dd1e1) -- Moved all utilities of StyleMenu into StyleMenu directory [`cbb0779`](https://github.com/eea/volto-slate/commit/cbb07790a52853d5b161081e14b204ecb521c10e) -- Add changelog [`a713a78`](https://github.com/eea/volto-slate/commit/a713a78232b6c6a62c18c20dacc22602b68f418b) -- Add toc entry settings in text block [`d938391`](https://github.com/eea/volto-slate/commit/d938391670429d62306b38099d11845afa258f85) -- Improve paste handling when dealing with images [`27b5c81`](https://github.com/eea/volto-slate/commit/27b5c81c8515e662ccc4b9076c6480c0c2f8f4ca) -- Extract toggleStyle into utils/blocks.js [`ebd919f`](https://github.com/eea/volto-slate/commit/ebd919f336ed91545ebeb5cad303f1e394f93937) -- Improve paste handling, also handle plain text [`4cc2b54`](https://github.com/eea/volto-slate/commit/4cc2b54a685d90eb74eaef74f3217948d8e87893) - -#### [0.8.2](https://github.com/eea/volto-slate/compare/0.8.1...0.8.2) - -> 7 October 2020 - -- Sync develop to master [`#16`](https://github.com/eea/volto-slate/pull/16) -- Release 0.7.0 [`#10`](https://github.com/eea/volto-slate/pull/10) -- Merge develop to master [`#7`](https://github.com/eea/volto-slate/pull/7) -- Improve paste handling [`fb915f7`](https://github.com/eea/volto-slate/commit/fb915f7e51f73a451866c781ab56b8ef995fabf3) -- Improve paste handling [`e4421ee`](https://github.com/eea/volto-slate/commit/e4421eea1a984ec4a3e7bb825776b42cff10155c) -- Improve paste handling [`9c097e7`](https://github.com/eea/volto-slate/commit/9c097e772eb32bcc0deec846879fc702e165da0e) -- Code cleanup [`e42240a`](https://github.com/eea/volto-slate/commit/e42240a5cd4267d2ad69677897cfdf4653385084) -- Improve paste handling [`156d17c`](https://github.com/eea/volto-slate/commit/156d17c0c6edc080e21f9c2a518a924db266c5b7) -- Simplify a bit the select flushing [`54ca049`](https://github.com/eea/volto-slate/commit/54ca049dacb4e409bf90e89c2e51047970b5b925) -- Solve: fixed (expanded) toolbar not showing [`62debcf`](https://github.com/eea/volto-slate/commit/62debcf57affb84d18a2d4f4359a81b69b563887) -- Use default target string '_self' in schema [`0f0086c`](https://github.com/eea/volto-slate/commit/0f0086cbe32f45267e238a8492bd4128aa62f9ce) -- Default target string is '_self' [`7ea908a`](https://github.com/eea/volto-slate/commit/7ea908a29c6299c30a4200b4ff455df29f3e2815) -- Return null from deserializeImageTag sometimes [`313a0ea`](https://github.com/eea/volto-slate/commit/313a0ea4df230c7cdead46a6914357d6f2ec489c) -- Solve: Enter press in title not focusing new block [`ef14eab`](https://github.com/eea/volto-slate/commit/ef14eabc0394c9cb1f5b25de78f70df99b6d0d53) -- Disable paste of local images in HTML context [`c6a70e3`](https://github.com/eea/volto-slate/commit/c6a70e31ab3388baea724df9cfd0a4eb84bee1ca) -- Do not let the user paste links that target iframes [`ac7bb68`](https://github.com/eea/volto-slate/commit/ac7bb6866113a63c5ec280bbe30784488d43369f) -- Move ObjectByTypeWidget to volto-object-widget [`5bd54d3`](https://github.com/eea/volto-slate/commit/5bd54d3ea150d343f9c802d35e7ddb1cc117c0f5) - -#### [0.8.1](https://github.com/eea/volto-slate/compare/0.8...0.8.1) - -> 4 October 2020 - -- Hide hovering toolbar on sidebar opening [`#12`](https://github.com/eea/volto-slate/pull/12) -- Add CHANGELOG entries [`765d4db`](https://github.com/eea/volto-slate/commit/765d4db6fa711c4b7bc80eef67148f931a71cbaf) -- Improve paste handling [`97d4684`](https://github.com/eea/volto-slate/commit/97d468455d6fa1fc856a630eb4ccea90b03f5862) -- Improve paste handling [`f3c1057`](https://github.com/eea/volto-slate/commit/f3c105743ec4ad5ba2df64b294fcd4245428606e) -- Cleanup code [`3b0cc7a`](https://github.com/eea/volto-slate/commit/3b0cc7a50a54559da756f74eabdabf4abb579073) -- Better paste handling [`358a41d`](https://github.com/eea/volto-slate/commit/358a41d92a6c8dded22b99aba03fb1143838ab44) -- Fix handling of new line character in paste [`714de4b`](https://github.com/eea/volto-slate/commit/714de4b6ffefd93a4817c09e626f366a1f4a64d2) -- Fix link pasting; improve general pasting [`5eac988`](https://github.com/eea/volto-slate/commit/5eac9889c5b5f91b2cac8c62e13f0cde7108efdc) -- Better handling of paste data coming from slate [`c2bd4fd`](https://github.com/eea/volto-slate/commit/c2bd4fd0b32501c4117f777bed5dd41860d6e7f7) -- Replace savedSelection property with separate getSavedSelection and setSavedSelection [`a2f2d54`](https://github.com/eea/volto-slate/commit/a2f2d54d7d04a0d888d996146d57b5ea411f2fb8) -- Ignore <br> tags in deserialization process [`50426a0`](https://github.com/eea/volto-slate/commit/50426a00210f7bb9ea2ab264ea74d4e8d46708ce) -- Correctly render <br> from pasted HTML [`6f05392`](https://github.com/eea/volto-slate/commit/6f05392328fc43acc9384ecad5dfe8fc475dce99) -- Solve issue: function throws exception, not returning empty NodeEntry [`fdbf353`](https://github.com/eea/volto-slate/commit/fdbf3532b6abd5b05c67acdbeb42d099adc14996) -- Modularize, better Enter behaviour in inlines in lists [`428a373`](https://github.com/eea/volto-slate/commit/428a373bb2e3171838118560cc11606ee0acaa6b) -- Add new line between two function definitions [`411eb5b`](https://github.com/eea/volto-slate/commit/411eb5be7404d80d72013c7aa557837b7135d6fa) -- Split block on Enter when selection in inline node [`8f2956f`](https://github.com/eea/volto-slate/commit/8f2956fe8fe8ca3637f6b9455b3f3a2a48000fa1) -- Pasted links have good information in their sidebar [`976062d`](https://github.com/eea/volto-slate/commit/976062d4e4a9691e721ad61de8043076a6890a62) -- Allow pasting empty cells from Google Spreadsheets [`cabfd11`](https://github.com/eea/volto-slate/commit/cabfd1167867a4bae3f3919a18ffeec114c5d8e3) -- Upgrade slate to 0.59 [`890ae52`](https://github.com/eea/volto-slate/commit/890ae52ad82073e30aa4f4edcd7539bfe8206b3b) -- Toolbar button title [`ebc6878`](https://github.com/eea/volto-slate/commit/ebc6878eaa9807e47e8877ff9bb24a0d01033832) -- Fix: range is null [`e19b887`](https://github.com/eea/volto-slate/commit/e19b8879f06a54346896d8eccca2eaef5ca04763) -- Fix joinWithPreviousBlock when block index is 0 [`04ea0a1`](https://github.com/eea/volto-slate/commit/04ea0a1940273f867dabcfb56b8a45957b3052e4) -- Add CHANGELOG [`3a1f65d`](https://github.com/eea/volto-slate/commit/3a1f65dcb785485d933c507ec9976288d4525d2a) -- Fix inline styling of replaced markup [`bf964b9`](https://github.com/eea/volto-slate/commit/bf964b9ee644dbf459c4d6809bc78f8b39710370) -- Change style menu definitions format [`0e7277a`](https://github.com/eea/volto-slate/commit/0e7277a60b0816220638790b7400331d68607b18) -- Cosmetics [`2242957`](https://github.com/eea/volto-slate/commit/22429579c102b53b32d12415749e6b1675a6ecf2) -- No default style menu definitions (case handled) [`48131e2`](https://github.com/eea/volto-slate/commit/48131e2c9fcae30446266283699041c5c0e7b81d) -- Update 2 strings displayed to the end-user [`41a6172`](https://github.com/eea/volto-slate/commit/41a6172ade29080e46337f92a164bbb3acb38b90) -- Fix block selection [`226d374`](https://github.com/eea/volto-slate/commit/226d3748a9929a3cf22b372b660268e48ad3c9a8) -- Fix link rendering [`6811f6e`](https://github.com/eea/volto-slate/commit/6811f6e5a3b3a5419b9f6cf03becefd6371de8da) -- Inherit placeholder from formTitle if exists [`2d14fc6`](https://github.com/eea/volto-slate/commit/2d14fc6a2fff70b89853f1e39447850703f5375f) -- Add TextBlock schema and editing instructions support [`6b832f4`](https://github.com/eea/volto-slate/commit/6b832f43a647a324f24aa93fc0dac6577bc6c6b3) -- Follow block data protocol, pass formData as data [`f1fc6fd`](https://github.com/eea/volto-slate/commit/f1fc6fd4dc35b26f363d68f95cb01cb2b92db8f0) -- Pass formData to schemaProvider [`d7edce6`](https://github.com/eea/volto-slate/commit/d7edce68852423e8491b7a4c0b965eebde24d8a6) -- Make SchemaProvider more obvious [`bf8a221`](https://github.com/eea/volto-slate/commit/bf8a2215d124018db6309c3d6ac2a5c97031e57a) -- Add SchemaProvider component [`c936b29`](https://github.com/eea/volto-slate/commit/c936b291246cedbe33945a7c261d3153043cbf75) -- Pass allowedBlocks to BlockChooser [`82390bc`](https://github.com/eea/volto-slate/commit/82390bc8977d0d60e3ac9e68608da405fed04008) -- Code formatting [`654026b`](https://github.com/eea/volto-slate/commit/654026b0512de371ecd4c4f19f7e1965d6de3c10) -- Fix package.json [`50dd590`](https://github.com/eea/volto-slate/commit/50dd59084599a130a855b071d45c06a95bf6948b) -- Improved initial styles for testing [`34470ef`](https://github.com/eea/volto-slate/commit/34470ef5e8efc045e098caefb486fc0d027088d6) -- Improved style [`4f2dab8`](https://github.com/eea/volto-slate/commit/4f2dab8a70e4a381cfcee468a21b601310bd1255) -- Solved an issue in hasRangeSelection [`8299280`](https://github.com/eea/volto-slate/commit/8299280d7bcdece430a1180c655054bbe1558827) -- Cleanup [`128e9f6`](https://github.com/eea/volto-slate/commit/128e9f61052995af657a5e0875ce73b81043efc7) -- Started using the Slate marks system correctly [`5103226`](https://github.com/eea/volto-slate/commit/5103226af0c4489aab5d8f5fc1b2e4952850516e) -- Improve logic and solve some issues [`b5dac91`](https://github.com/eea/volto-slate/commit/b5dac913720efc04fbfe94a330c8a77a01c7553f) -- Improve logic [`9652c0c`](https://github.com/eea/volto-slate/commit/9652c0c4577e69c72585257a4d2c43198bdc849e) -- Clarified example styles [`3d21fd1`](https://github.com/eea/volto-slate/commit/3d21fd13420b677b8492c11e491a39b9d22bcfea) -- WIP on composing styles [`885eacd`](https://github.com/eea/volto-slate/commit/885eacd7f9d53c544a69f5bbf3d07ec76c4e43ff) -- Cleanup [`4811e68`](https://github.com/eea/volto-slate/commit/4811e68e7e10938efcf4144edc54b92fbc17ddee) -- Solved another issue [`4245ab0`](https://github.com/eea/volto-slate/commit/4245ab01fa5262c4ee9fca558b235cc7a9ba6e4a) -- Solved 2 issues [`2fb86ff`](https://github.com/eea/volto-slate/commit/2fb86ffa2eccaa05c3e3d9d0ce245e88621575f4) -- WIP - essential features work [`9bd95c6`](https://github.com/eea/volto-slate/commit/9bd95c64cc4fdd67e9125c52fc63e72ede1f123b) -- Improved style + WIP on inline styles [`f5291d1`](https://github.com/eea/volto-slate/commit/f5291d14c4f98e13f38bdb3add2acebf0c208178) -- Set the initial selection of the Select [`a28f597`](https://github.com/eea/volto-slate/commit/a28f59768fe77ad832620ecd2021b97deee7b0e9) -- Working block style toggle [`b02b7a7`](https://github.com/eea/volto-slate/commit/b02b7a7355cb4680fa0e47691fb6c9b2b923de28) -- WIP on block styles [`66fe907`](https://github.com/eea/volto-slate/commit/66fe9077e84b6e177ff90e888e0c61079d6176ec) -- Improved style [`c89ea33`](https://github.com/eea/volto-slate/commit/c89ea33b8f1984fb6db60895f07851a288799781) -- Improved i18n, added comments [`a112455`](https://github.com/eea/volto-slate/commit/a1124558d93ce6e17416be7c91fb055fa7a993ee) -- Improved style [`74ce9b9`](https://github.com/eea/volto-slate/commit/74ce9b97e23c7d67d57703789732f0e0a132681f) -- WIP - mostly work on style [`3cfef02`](https://github.com/eea/volto-slate/commit/3cfef0207fe2e6bdc660ca3e2e6a3608a9106bee) -- Improved Select style and created state for it [`0a0266d`](https://github.com/eea/volto-slate/commit/0a0266dfbfdae9052d72581399ab8fe3b1c8a107) -- Improved Select style [`64ad7f3`](https://github.com/eea/volto-slate/commit/64ad7f3e06f89393b8b2e20085ed16a3c5a3c369) - -#### [0.8](https://github.com/eea/volto-slate/compare/0.7.2...0.8) - -> 21 September 2020 - -- Release 0.7.0 [`#10`](https://github.com/eea/volto-slate/pull/10) -- Merge develop to master [`#7`](https://github.com/eea/volto-slate/pull/7) - -#### [0.7.2](https://github.com/eea/volto-slate/compare/0.7.1...0.7.2) - -> 30 September 2020 - -- Hide hovering toolbar on sidebar opening [`#12`](https://github.com/eea/volto-slate/pull/12) -- Pasted links have good information in their sidebar [`976062d`](https://github.com/eea/volto-slate/commit/976062d4e4a9691e721ad61de8043076a6890a62) -- Allow pasting empty cells from Google Spreadsheets [`cabfd11`](https://github.com/eea/volto-slate/commit/cabfd1167867a4bae3f3919a18ffeec114c5d8e3) -- Upgrade slate to 0.59 [`890ae52`](https://github.com/eea/volto-slate/commit/890ae52ad82073e30aa4f4edcd7539bfe8206b3b) -- Toolbar button title [`ebc6878`](https://github.com/eea/volto-slate/commit/ebc6878eaa9807e47e8877ff9bb24a0d01033832) -- Fix: range is null [`e19b887`](https://github.com/eea/volto-slate/commit/e19b8879f06a54346896d8eccca2eaef5ca04763) -- Fix joinWithPreviousBlock when block index is 0 [`04ea0a1`](https://github.com/eea/volto-slate/commit/04ea0a1940273f867dabcfb56b8a45957b3052e4) -- Add CHANGELOG [`3a1f65d`](https://github.com/eea/volto-slate/commit/3a1f65dcb785485d933c507ec9976288d4525d2a) -- Fix inline styling of replaced markup [`bf964b9`](https://github.com/eea/volto-slate/commit/bf964b9ee644dbf459c4d6809bc78f8b39710370) -- Change style menu definitions format [`0e7277a`](https://github.com/eea/volto-slate/commit/0e7277a60b0816220638790b7400331d68607b18) -- Cosmetics [`2242957`](https://github.com/eea/volto-slate/commit/22429579c102b53b32d12415749e6b1675a6ecf2) -- No default style menu definitions (case handled) [`48131e2`](https://github.com/eea/volto-slate/commit/48131e2c9fcae30446266283699041c5c0e7b81d) -- Update 2 strings displayed to the end-user [`41a6172`](https://github.com/eea/volto-slate/commit/41a6172ade29080e46337f92a164bbb3acb38b90) -- Fix block selection [`226d374`](https://github.com/eea/volto-slate/commit/226d3748a9929a3cf22b372b660268e48ad3c9a8) -- Fix link rendering [`6811f6e`](https://github.com/eea/volto-slate/commit/6811f6e5a3b3a5419b9f6cf03becefd6371de8da) -- Inherit placeholder from formTitle if exists [`2d14fc6`](https://github.com/eea/volto-slate/commit/2d14fc6a2fff70b89853f1e39447850703f5375f) -- Add TextBlock schema and editing instructions support [`6b832f4`](https://github.com/eea/volto-slate/commit/6b832f43a647a324f24aa93fc0dac6577bc6c6b3) -- Follow block data protocol, pass formData as data [`f1fc6fd`](https://github.com/eea/volto-slate/commit/f1fc6fd4dc35b26f363d68f95cb01cb2b92db8f0) -- Pass formData to schemaProvider [`d7edce6`](https://github.com/eea/volto-slate/commit/d7edce68852423e8491b7a4c0b965eebde24d8a6) -- Make SchemaProvider more obvious [`bf8a221`](https://github.com/eea/volto-slate/commit/bf8a2215d124018db6309c3d6ac2a5c97031e57a) -- Add SchemaProvider component [`c936b29`](https://github.com/eea/volto-slate/commit/c936b291246cedbe33945a7c261d3153043cbf75) -- Pass allowedBlocks to BlockChooser [`82390bc`](https://github.com/eea/volto-slate/commit/82390bc8977d0d60e3ac9e68608da405fed04008) -- Code formatting [`654026b`](https://github.com/eea/volto-slate/commit/654026b0512de371ecd4c4f19f7e1965d6de3c10) -- Improved initial styles for testing [`34470ef`](https://github.com/eea/volto-slate/commit/34470ef5e8efc045e098caefb486fc0d027088d6) -- Improved style [`4f2dab8`](https://github.com/eea/volto-slate/commit/4f2dab8a70e4a381cfcee468a21b601310bd1255) -- Solved an issue in hasRangeSelection [`8299280`](https://github.com/eea/volto-slate/commit/8299280d7bcdece430a1180c655054bbe1558827) -- Cleanup [`128e9f6`](https://github.com/eea/volto-slate/commit/128e9f61052995af657a5e0875ce73b81043efc7) -- Started using the Slate marks system correctly [`5103226`](https://github.com/eea/volto-slate/commit/5103226af0c4489aab5d8f5fc1b2e4952850516e) -- Improve logic and solve some issues [`b5dac91`](https://github.com/eea/volto-slate/commit/b5dac913720efc04fbfe94a330c8a77a01c7553f) -- Improve logic [`9652c0c`](https://github.com/eea/volto-slate/commit/9652c0c4577e69c72585257a4d2c43198bdc849e) -- Clarified example styles [`3d21fd1`](https://github.com/eea/volto-slate/commit/3d21fd13420b677b8492c11e491a39b9d22bcfea) -- WIP on composing styles [`885eacd`](https://github.com/eea/volto-slate/commit/885eacd7f9d53c544a69f5bbf3d07ec76c4e43ff) -- Cleanup [`4811e68`](https://github.com/eea/volto-slate/commit/4811e68e7e10938efcf4144edc54b92fbc17ddee) -- Solved another issue [`4245ab0`](https://github.com/eea/volto-slate/commit/4245ab01fa5262c4ee9fca558b235cc7a9ba6e4a) -- Solved 2 issues [`2fb86ff`](https://github.com/eea/volto-slate/commit/2fb86ffa2eccaa05c3e3d9d0ce245e88621575f4) -- WIP - essential features work [`9bd95c6`](https://github.com/eea/volto-slate/commit/9bd95c64cc4fdd67e9125c52fc63e72ede1f123b) -- Improved style + WIP on inline styles [`f5291d1`](https://github.com/eea/volto-slate/commit/f5291d14c4f98e13f38bdb3add2acebf0c208178) -- Set the initial selection of the Select [`a28f597`](https://github.com/eea/volto-slate/commit/a28f59768fe77ad832620ecd2021b97deee7b0e9) -- Working block style toggle [`b02b7a7`](https://github.com/eea/volto-slate/commit/b02b7a7355cb4680fa0e47691fb6c9b2b923de28) -- WIP on block styles [`66fe907`](https://github.com/eea/volto-slate/commit/66fe9077e84b6e177ff90e888e0c61079d6176ec) -- Improved style [`c89ea33`](https://github.com/eea/volto-slate/commit/c89ea33b8f1984fb6db60895f07851a288799781) -- Improved i18n, added comments [`a112455`](https://github.com/eea/volto-slate/commit/a1124558d93ce6e17416be7c91fb055fa7a993ee) -- Improved style [`74ce9b9`](https://github.com/eea/volto-slate/commit/74ce9b97e23c7d67d57703789732f0e0a132681f) -- WIP - mostly work on style [`3cfef02`](https://github.com/eea/volto-slate/commit/3cfef0207fe2e6bdc660ca3e2e6a3608a9106bee) -- Improved Select style and created state for it [`0a0266d`](https://github.com/eea/volto-slate/commit/0a0266dfbfdae9052d72581399ab8fe3b1c8a107) -- Improved Select style [`64ad7f3`](https://github.com/eea/volto-slate/commit/64ad7f3e06f89393b8b2e20085ed16a3c5a3c369) - -#### [0.7.1](https://github.com/eea/volto-slate/compare/0.7.0...0.7.1) - -> 21 September 2020 - -- Fix package.json [`50dd590`](https://github.com/eea/volto-slate/commit/50dd59084599a130a855b071d45c06a95bf6948b) - -#### [0.7.0](https://github.com/eea/volto-slate/compare/0.6.2...0.7.0) - -> 21 September 2020 - -- Release 0.7.0 [`#10`](https://github.com/eea/volto-slate/pull/10) -- Return status of element inserted [`#9`](https://github.com/eea/volto-slate/pull/9) -- Merge develop to master [`#7`](https://github.com/eea/volto-slate/pull/7) -- Fix imports [`e97d13c`](https://github.com/eea/volto-slate/commit/e97d13c699b415783d41b1558b24ac5c9adf9a0f) -- Remove debugging code [`fc593f1`](https://github.com/eea/volto-slate/commit/fc593f15b39194093623ba167b3f8da9b79c0662) -- Fix context provider [`7eb3b01`](https://github.com/eea/volto-slate/commit/7eb3b014829c5f286f40de4b4467b8a20503c0d0) -- Add editor context, usable by element renderer components [`471d921`](https://github.com/eea/volto-slate/commit/471d92144eaf7d1e54ab4b2a3dffed55e5660d42) -- Don't load ObjectWidget included here [`2fa16cb`](https://github.com/eea/volto-slate/commit/2fa16cbdb9d16f75b181fe30b8749dfde25a7f96) -- Add copy of helpers/Blocks/Blocks.js, to depend only on current Volto master [`4ed57d6`](https://github.com/eea/volto-slate/commit/4ed57d64b51e7688bc1966f53397ee24604d026a) -- More cleanup [`7464539`](https://github.com/eea/volto-slate/commit/74645390220651d3f608b8cc7a83df552c10a141) -- More cleanup dependence on formContext [`bd3480b`](https://github.com/eea/volto-slate/commit/bd3480b43a6b67c1f8604e9c8fea91bb75392724) -- Rewrite joinWithPreviousBlock with new api [`29921f7`](https://github.com/eea/volto-slate/commit/29921f72672e2653fedd7050bf0b0055679e7c4e) -- Implement join with next block with new API [`cc1ac8e`](https://github.com/eea/volto-slate/commit/cc1ac8e6d16997a15ef9885bdcc67bf38e742039) -- Implement create slate block with unstable React api [`e3e9131`](https://github.com/eea/volto-slate/commit/e3e91313bd6ad1dbe05de57ecab8196a6fa512f6) -- WIP on minimizing form context need [`8ad059d`](https://github.com/eea/volto-slate/commit/8ad059d1ab6e94a24456d083c50ddcd01ee57aa9) -- Make copy/paste work [`cde9345`](https://github.com/eea/volto-slate/commit/cde93450086e530ce086c4c469653a442705fd80) -- Serialize node data, to help with paste [`8b5ba9f`](https://github.com/eea/volto-slate/commit/8b5ba9f93d82dbd815f1a4ebc923b96d0e34c3d8) -- Better handling of active tab [`811a27b`](https://github.com/eea/volto-slate/commit/811a27b4db5ccbc873c807eed18ffe87939aa151) -- WIP on link plugin [`7527dcf`](https://github.com/eea/volto-slate/commit/7527dcf3e33b072d11ad1b004dfcc2633949ac23) -- WIP on link plugin [`f71ddf3`](https://github.com/eea/volto-slate/commit/f71ddf3eb544e92a744a4057c2062deb2dc0e3f7) -- Improve doc comment [`838762a`](https://github.com/eea/volto-slate/commit/838762ae420b19692da1cc54a77930cffa8d26d3) -- Removed unused import [`19b1c6b`](https://github.com/eea/volto-slate/commit/19b1c6b132596708007e5c774c3f0b589eecb281) -- Reverted wrong changes [`485a816`](https://github.com/eea/volto-slate/commit/485a81677831192d884c3004bc77bdb4585a11ec) -- For volto-slate-footnote branch 'auto-footnotes-at-end-of-page' [`c67c7ad`](https://github.com/eea/volto-slate/commit/c67c7ad22aa85fe2bde89eba81c57289cf965430) - -#### [0.6.2](https://github.com/eea/volto-slate/compare/0.6.1...0.6.2) - -> 16 September 2020 - -#### [0.6.1](https://github.com/eea/volto-slate/compare/0.6.0...0.6.1) - -> 16 September 2020 - -- Make text editor aware of layout required and disableNewBlocks settings [`dd15d3b`](https://github.com/eea/volto-slate/commit/dd15d3b1cf5e42349e3349450ed986b91bd5463c) -- Don't use mostUsed for block registration [`382927a`](https://github.com/eea/volto-slate/commit/382927aea2a756ea483ce741195708b870edcf8b) - -#### [0.6.0](https://github.com/eea/volto-slate/compare/0.5.3...0.6.0) - -> 14 September 2020 - -- Update README.md [`#4`](https://github.com/eea/volto-slate/pull/4) -- Update README.md [`#6`](https://github.com/eea/volto-slate/pull/6) -- Sync develop to master [`#5`](https://github.com/eea/volto-slate/pull/5) -- Sync develop into master [`#2`](https://github.com/eea/volto-slate/pull/2) -- Release 0.6.0 [`11d90eb`](https://github.com/eea/volto-slate/commit/11d90eb4c317d675a4e367578ae7cd99a887af24) -- Update footnote utils methods [`4f52499`](https://github.com/eea/volto-slate/commit/4f524999e9b8d48e39a5b3df3fd8bfc79b9bebd4) -- Fix default value on SelectWidget [`fa714a4`](https://github.com/eea/volto-slate/commit/fa714a4bf6b3332a1709b903c774de0429dbce70) -- Use toolbarButtonIcon within PluginEditor [`a98e6c8`](https://github.com/eea/volto-slate/commit/a98e6c805798f9190878bc5bbbe25dd58339a5f7) -- Add H4 toolbar button [`fb50784`](https://github.com/eea/volto-slate/commit/fb50784d78586dcfd8c0c41ea5abe3de15c996ee) -- Remove console.log calls [`b1771a5`](https://github.com/eea/volto-slate/commit/b1771a52e37c3b80b0d46a81b88416514c1e7f0c) -- Simplify registration of new element [`0bd4a01`](https://github.com/eea/volto-slate/commit/0bd4a01b9abadf0a1bfabed50e84fcaab2bf7b04) -- Improve performance [`ae5fddb`](https://github.com/eea/volto-slate/commit/ae5fddbde6aa819f7aa78bc9e447f0d02ee7f6b8) -- Removed Footnote plugin [`a62b1dd`](https://github.com/eea/volto-slate/commit/a62b1dd1c6cb8b7bb85ff98fd66da5a66fdf5a9c) -- More fixes [`fc5cd01`](https://github.com/eea/volto-slate/commit/fc5cd01c86cfc79a885437ff9f65346f0d19c389) -- More fixes [`e3d5902`](https://github.com/eea/volto-slate/commit/e3d590220d8143af59e104e2fe180aca14880bac) -- Small fixes [`57618dc`](https://github.com/eea/volto-slate/commit/57618dcb71d5318f84f28e7d69013af90f90e4c0) -- WIP, refactor a generic ElementEditor from the Footnote plugin [`7a29fc1`](https://github.com/eea/volto-slate/commit/7a29fc1d398690d7ac76c78798ca622606de73a2) -- Code cleanup [`aa03b7a`](https://github.com/eea/volto-slate/commit/aa03b7a6551c660ca4b953165a745bb7be6ccbdc) -- Fix footnote plugin [`8ce0730`](https://github.com/eea/volto-slate/commit/8ce0730c21fb76323fd76a856732da13070a21d4) -- Improve handling of backward selection [`50c9e74`](https://github.com/eea/volto-slate/commit/50c9e74141f500e346903f8497add4c0d7255951) -- cleanup [`1c55a81`](https://github.com/eea/volto-slate/commit/1c55a81554719cc67d4735e94027adfd6439ccc7) -- WIP [`9ea1f51`](https://github.com/eea/volto-slate/commit/9ea1f5180bb0bafe0c06b701352c3123b092e867) -- WIP [`1cd8999`](https://github.com/eea/volto-slate/commit/1cd89995e92222a871c93b2e69bf34170dff46f9) -- WIP [`4db1e5e`](https://github.com/eea/volto-slate/commit/4db1e5e0389787e2f07ab8042cd5615d3bcfea19) -- Make the editor usable [`aa39a7a`](https://github.com/eea/volto-slate/commit/aa39a7aa663d1ddf70ebff66f5829d5f53891d62) -- Move selection to start of block [`476add2`](https://github.com/eea/volto-slate/commit/476add2578ac2b0402766ea12e299e8b4a926450) -- Some improvements to selection hacks [`d2cd70a`](https://github.com/eea/volto-slate/commit/d2cd70a75a303830a31a20e396d8d5eaaa8ba6e4) -- WIP, fix sel [`511d34d`](https://github.com/eea/volto-slate/commit/511d34dbb2a5e68bab156ea4ac1a9bd8e550d6de) -- WIP on focus issues [`128af00`](https://github.com/eea/volto-slate/commit/128af00ec024cd355be7406a3371eb8f204190fb) -- Solved issue with backward selection [`2a78991`](https://github.com/eea/volto-slate/commit/2a78991ae8c55c7b36d0b7321d82369a45f6610b) -- Remove debugging list [`e7f8efe`](https://github.com/eea/volto-slate/commit/e7f8efedc9326ae3867000e51731434f6e7532cf) -- Make persistent helpers dependent on selected state [`8a70d68`](https://github.com/eea/volto-slate/commit/8a70d680b752afa7b289d955c4dbfc8b94f65480) -- Fix inline styling [`37d3d98`](https://github.com/eea/volto-slate/commit/37d3d98c29c16339660330569c80533146c2286b) -- Selection refix [`34d4231`](https://github.com/eea/volto-slate/commit/34d4231076ca84f5bf0ee9a46f10eb51163cb635) -- Throttle selection saving [`eca91ba`](https://github.com/eea/volto-slate/commit/eca91ba6b85c7788596c559bd58742da3bb51ae8) -- Be more specific on which dom selection we're interested [`b050d51`](https://github.com/eea/volto-slate/commit/b050d514758b1fce812b4c7747185dd790cc4bf2) -- Add comment [`267d6d2`](https://github.com/eea/volto-slate/commit/267d6d2a605bfa498db042f9dc4a8fff209e2f05) -- Fix focusing of editor [`2f2f346`](https://github.com/eea/volto-slate/commit/2f2f34634028886bb2e2c04d4b7c53693ea3a229) -- Make selection handling more consistent [`30c82bc`](https://github.com/eea/volto-slate/commit/30c82bcfbabd53afbcdb283af9db1016a41c3ebd) -- WIP, add Slate RichTextWidget [`7b91b1a`](https://github.com/eea/volto-slate/commit/7b91b1aa8945be8eaa5af9df3a2157ee85138675) -- Add StyleMenu [`d0d9cd8`](https://github.com/eea/volto-slate/commit/d0d9cd8b55935980c8dfabaa5f4791e7f8f33e0f) -- Revert ToolbarButton [`e295542`](https://github.com/eea/volto-slate/commit/e2955420eb73a078830f79fc720240778702a5e3) -- Simplify code [`8725d83`](https://github.com/eea/volto-slate/commit/8725d8307dd192b6f607719af9ef79c6dae78660) -- Improve paste handling [`461bcef`](https://github.com/eea/volto-slate/commit/461bcefe7f6dd2fc0fb2773bbb4c61f19f90e7d4) -- Fix theming [`2be09fa`](https://github.com/eea/volto-slate/commit/2be09fa1e1f2c1421b32d4534dd621da77dd8969) -- Solved style issue [`c9cff8d`](https://github.com/eea/volto-slate/commit/c9cff8de6232cd7ac765bda6b3281d81920e21f0) -- Dropdown focusing and blurring work pretty well [`769cce0`](https://github.com/eea/volto-slate/commit/769cce0cff4c6cd95202d7a6358201e762572425) -- Dropdown now shows w/o hiding the hovering toolbar [`9a9e523`](https://github.com/eea/volto-slate/commit/9a9e5236bce3087fec79fba3aafbf887adc77ee2) -- Improved style [`f5f67f8`](https://github.com/eea/volto-slate/commit/f5f67f8d2e401fbe1f9e5b22d9815ceecf0e9cad) -- Improved style and set defaultValue to react-select [`2ad7bb1`](https://github.com/eea/volto-slate/commit/2ad7bb168304c57f9aaef75b6c1d49f761156e4b) -- Basic empty nice styled unusable react-select [`355059b`](https://github.com/eea/volto-slate/commit/355059b329266a7cdf364aa05be9f94028abff37) -- Code cleanup [`ba95e06`](https://github.com/eea/volto-slate/commit/ba95e06754410479cd229d877d24473718b9391f) -- Improve paste from google docs [`5728544`](https://github.com/eea/volto-slate/commit/57285445aefbce06a0771a0df4b5311cb7f6f440) -- Improve inline format button [`27bf284`](https://github.com/eea/volto-slate/commit/27bf28452a0f178803c2603e292fa1eed2e4ea9e) -- Improved comments, added new comments [`7f80ab3`](https://github.com/eea/volto-slate/commit/7f80ab32e1f56896d392a1d38d16ae2a60084e9b) -- Handle most elements as inline elements [`379fab6`](https://github.com/eea/volto-slate/commit/379fab6c0e41a2db3db5a602f7fe1019dfbac686) -- WIP [`3123248`](https://github.com/eea/volto-slate/commit/312324883e953bbc09e6b938c07ecda31a924d69) -- Wrapped some comments and doc comments at 80 chars [`7c04d74`](https://github.com/eea/volto-slate/commit/7c04d7449c7fe7172b439b38235dd2feada4d9c0) -- Improved comments + added new comments [`30f2de1`](https://github.com/eea/volto-slate/commit/30f2de1fa6b992b0834c959cb46ac6022dcb20e5) -- WIP [`2b23c8d`](https://github.com/eea/volto-slate/commit/2b23c8d2e395d89afa180300927938720c930505) -- Improve paste handling of complex inline text [`934014c`](https://github.com/eea/volto-slate/commit/934014ca6cf51d0d4d585011b3c97f53d1fc6581) -- Improved and added new comments [`82c3061`](https://github.com/eea/volto-slate/commit/82c3061de07f79f2d2af2ea9ba1d854df3ca8ab5) -- Use Promise-based Form methods + improved comments [`656550c`](https://github.com/eea/volto-slate/commit/656550c799aeb58c31c09e2dae1fe573d4623481) -- Improve paste handling of google docs content [`7fe8229`](https://github.com/eea/volto-slate/commit/7fe82292faa4d4272f2f15488eb7b6aa8aef4e39) -- Improve paste handling of <strong><a /></strong> [`3a5ef37`](https://github.com/eea/volto-slate/commit/3a5ef37ea0a9068447160c9fc81cfd9156610093) - -#### [0.5.3](https://github.com/eea/volto-slate/compare/0.5.2...0.5.3) - -> 22 August 2020 - -- Hack closing the block chooser on click outside [`f3aa023`](https://github.com/eea/volto-slate/commit/f3aa023fb0ddbe1d76c71730d682f9598511c1c5) -- Fix spellcheck param [`fd670bb`](https://github.com/eea/volto-slate/commit/fd670bb60a9f16d92bbff653c80285f41936d8ba) -- Hide block chooser after adding a Slate Text block [`133d153`](https://github.com/eea/volto-slate/commit/133d153bfffc9dc3adafc025bc2cc7be62a716e9) - -#### [0.5.2](https://github.com/eea/volto-slate/compare/0.5.1...0.5.2) - -> 21 August 2020 - -- Fix paste insert [`a5f73d0`](https://github.com/eea/volto-slate/commit/a5f73d0d8bb10866dd54f680034f90b16f17bbb6) - -#### [0.5.1](https://github.com/eea/volto-slate/compare/0.5.0...0.5.1) - -> 21 August 2020 - -- Fix paste [`ebbbd1f`](https://github.com/eea/volto-slate/commit/ebbbd1fb34fd649b60c41319fbd6407fc2d5ac95) - -#### [0.5.0](https://github.com/eea/volto-slate/compare/0.4.9...0.5.0) - -> 20 August 2020 - -- Fix selection collapse problem [`faa2447`](https://github.com/eea/volto-slate/commit/faa2447916ce4d30ee61670fbdd3cbeb3a1210b8) -- Adedd todo [`c168aae`](https://github.com/eea/volto-slate/commit/c168aae7b3d360a3bf0230e78f4da3624a6839ee) -- Paste from Google Spreadsheet w/o useless text [`9df7731`](https://github.com/eea/volto-slate/commit/9df773107dc0b9440ac01e6ad8f3a94157a02bde) - -#### [0.4.9](https://github.com/eea/volto-slate/compare/0.4.8...0.4.9) - -> 19 August 2020 - -- Semantic [`4d66105`](https://github.com/eea/volto-slate/commit/4d6610511dba5e194bc180bec8fb3b5610e158c5) -- UI improvements [`30a0431`](https://github.com/eea/volto-slate/commit/30a043125bb2062701082c382b08b6ae9b0e4339) -- Solved an issue about loading link data in the edit link form [`1e0ab95`](https://github.com/eea/volto-slate/commit/1e0ab95b2c8a77d65314802881e6feb2cba8222e) -- Use accordion instead of tabs for fieldsets [`588ced6`](https://github.com/eea/volto-slate/commit/588ced6ad17895332e549329dc02512735d00ce5) -- Make the object browser widget be able to select a single object at once [`6636ca4`](https://github.com/eea/volto-slate/commit/6636ca4b8e8c348b8982b4728c940422c3057385) -- Solved some errors [`74f8de6`](https://github.com/eea/volto-slate/commit/74f8de638e6d7d720049a597768997c20b5d7489) -- Work on the link form features [`273ab99`](https://github.com/eea/volto-slate/commit/273ab99bd145f643c12618ebc26a7eac03ddac46) -- Solved another error in the browser console [`cc13187`](https://github.com/eea/volto-slate/commit/cc13187004787401dc8b69b82d7efcc93b06b2ba) -- Solved crash when inserting an internal link [`16e4c63`](https://github.com/eea/volto-slate/commit/16e4c63b7af045aa0490e365c8eb1fe0d3311fbc) -- Solved one of the errors in the browser console [`29afa78`](https://github.com/eea/volto-slate/commit/29afa7850c4ddf052d1b1f6ba950b386920dae33) -- WIP refactor link toolbar [`fb475a1`](https://github.com/eea/volto-slate/commit/fb475a1d7045ad029f8c91e3c94317945221c624) -- WIP refactor link toolbar [`bd6f10c`](https://github.com/eea/volto-slate/commit/bd6f10ce526fc26515a650f05ec3872906860e60) -- Small improvements [`bdab614`](https://github.com/eea/volto-slate/commit/bdab614a83b4dbddb2fc268d55740444cdbd112b) -- WIP refactor link toolbar [`c49eae8`](https://github.com/eea/volto-slate/commit/c49eae85f4e5400da4d9640b7534d4bffb306742) - -#### [0.4.8](https://github.com/eea/volto-slate/compare/0.4.7...0.4.8) - -> 19 August 2020 - -- Add title to footnote context button [`7f69c6f`](https://github.com/eea/volto-slate/commit/7f69c6fbd6fe51416df80d75daa2227077efdb10) - -#### [0.4.7](https://github.com/eea/volto-slate/compare/0.4.6...0.4.7) - -> 19 August 2020 - -- Add title to toolbar buttons [`fd8fcb9`](https://github.com/eea/volto-slate/commit/fd8fcb97e07e4c6d69e34457e59b8915fc29e39e) - -#### [0.4.6](https://github.com/eea/volto-slate/compare/0.4.5...0.4.6) - -> 18 August 2020 - -- Improved comments, used promise-based Form functions more [`a83948c`](https://github.com/eea/volto-slate/commit/a83948c238b7708e5bd1277f05acc8bb1406c430) -- Improved doc comments [`3245f6a`](https://github.com/eea/volto-slate/commit/3245f6af8d8ab2ff352c27c0499a67f0c857a1e8) -- Improved comments [`6721e06`](https://github.com/eea/volto-slate/commit/6721e068874f6f18f370dad74569986051749457) -- Improved comments, modularization + called unref on two Slate refs [`120ddf3`](https://github.com/eea/volto-slate/commit/120ddf3344e9c86c34d921eed4e226f2e4c2396d) -- Improved comments and modularization [`a47c4ef`](https://github.com/eea/volto-slate/commit/a47c4ef4ad1a98aaddd5d30c253d2d9693c6f07b) -- Improved comments [`3d7a507`](https://github.com/eea/volto-slate/commit/3d7a50768c852e5664d74d51952781a26be691b9) -- Improved comments and doc comments [`651b476`](https://github.com/eea/volto-slate/commit/651b4769ca456cdcdbbf695492c1f1e85c60dd5f) -- Improved doc comments [`70969a2`](https://github.com/eea/volto-slate/commit/70969a2a9f9b13cd4af767f72ef87b879d4e7dfa) -- Improved doc comments [`3d4f6fd`](https://github.com/eea/volto-slate/commit/3d4f6fdf9802cc8dcd869c512801a087b7367f11) -- Improved doc comments [`ae55996`](https://github.com/eea/volto-slate/commit/ae55996fc1f3cd0099d2d5e77438a186f3090b5b) -- Improved normal and doc comments [`0a7241d`](https://github.com/eea/volto-slate/commit/0a7241da86fada2c54b8c941da891363e537e779) -- Improved doc comments [`9e0cfc7`](https://github.com/eea/volto-slate/commit/9e0cfc765f2a2da2cfed724c859706fac9bce08f) -- Improved doc comments [`4647fde`](https://github.com/eea/volto-slate/commit/4647fde200298c3ea1ffbe5d99125d39f0eda534) -- Improved doc comments + solved missing style issue [`21fd477`](https://github.com/eea/volto-slate/commit/21fd47762344351694b0f40896304fa043e3148e) -- Improved doc comments + small cleanup [`26db68a`](https://github.com/eea/volto-slate/commit/26db68af98620cdd3aa144e75570e4213d3d8a46) - -#### [0.4.5](https://github.com/eea/volto-slate/compare/0.4.4...0.4.5) - -> 17 August 2020 - -- Cosmetics [`bfb9f97`](https://github.com/eea/volto-slate/commit/bfb9f970a5425c0342f5d3e20fd258150b512877) - -#### [0.4.4](https://github.com/eea/volto-slate/compare/0.4.3...0.4.4) - -> 17 August 2020 - -- Added new doc comments [`f05efe1`](https://github.com/eea/volto-slate/commit/f05efe1ebdd821040890cc7b9bee1d0f025a7f18) -- Added listing in the sidebar for supported Markdown [`d3d2ea6`](https://github.com/eea/volto-slate/commit/d3d2ea6baabaed4f1b1eb4a91a71b1fd94e3ca46) -- Removed TODO comment [`5fe2e30`](https://github.com/eea/volto-slate/commit/5fe2e300cde556a2f1718213adc3a1035d755a3b) -- Solved issue: list item by default contained a paragraph in Markdown plugin [`fd488b6`](https://github.com/eea/volto-slate/commit/fd488b61689b1563e1f1585c71f88182625ad0c8) -- A little bit of cleanup + 2 new TODO comments [`35298d4`](https://github.com/eea/volto-slate/commit/35298d4cabab25c4543f1222b1c41f26088bd979) -- Solved some issues of the Markdown plugin [`9dceaf8`](https://github.com/eea/volto-slate/commit/9dceaf8fb8a712bc589ff0b40cd8bc0f279c34da) -- Corrected README.md [`537d83f`](https://github.com/eea/volto-slate/commit/537d83ff14e86e2327f935478ab8d13ad788b437) -- Removed old TextBlockEdit.jsx file [`dcb8a8f`](https://github.com/eea/volto-slate/commit/dcb8a8f3923b0e201c1aab83f197e2e9e2fc498d) -- Cleanup, improved doc comments [`4927d76`](https://github.com/eea/volto-slate/commit/4927d76f18abd562658e0330deba43f87734383c) -- Added a doc comment [`c56ac30`](https://github.com/eea/volto-slate/commit/c56ac30881547562ff275b4ac4dd6a51b14c79b8) -- Added 3 new doc comments [`c0dbac0`](https://github.com/eea/volto-slate/commit/c0dbac00336ce459b5e46f863fed6c4af42b2d04) -- Added a doc comment [`43b8c7c`](https://github.com/eea/volto-slate/commit/43b8c7c70d60b5d47c162e45b520b7130d7b8588) -- Added a doc comment [`fd831ea`](https://github.com/eea/volto-slate/commit/fd831ea32c95da6ea83ca45936b1ffb9be163724) -- Added an explanation inside a comment [`4f08db6`](https://github.com/eea/volto-slate/commit/4f08db694d4aa4f8c4395c649056d862e4e8dc9e) -- Rewritten markdown plugin (flexible, as in slate-plugins) [`710f7e0`](https://github.com/eea/volto-slate/commit/710f7e0ebe22bf2164dacb20104898d2545930ac) - -#### [0.4.3](https://github.com/eea/volto-slate/compare/0.4.2...0.4.3) - -> 17 August 2020 - -- Activate inline shortcuts; use Popup for footnote decoration [`2a8ce8c`](https://github.com/eea/volto-slate/commit/2a8ce8c14e3876554360284fdb0e9ffb8cdbbd80) -- Fix rendering of empty nodes [`b1cf52c`](https://github.com/eea/volto-slate/commit/b1cf52cba92f6524d9b878fa00ebadf366cf5695) -- Don't include highlightByType by default, better to use CSS on special element class [`e7f31a6`](https://github.com/eea/volto-slate/commit/e7f31a67e156b2e20ff3602fbfa72f3523e26bc6) -- Improve selection handling when selecting backward [`12b2f8b`](https://github.com/eea/volto-slate/commit/12b2f8b4ecd42d94792565561f467b9f561873fb) -- Fix a problem with footnote highlight [`49e3cf0`](https://github.com/eea/volto-slate/commit/49e3cf0f9d89593778cb2117f512ef3d799c0057) -- Pass a bit more information in rendering [`9d241a6`](https://github.com/eea/volto-slate/commit/9d241a6fe80ce4dba5a10e29aa5c781616d97bfd) -- Use slate API to iterate over children; pass path to render elements [`833b84b`](https://github.com/eea/volto-slate/commit/833b84b38b833646d0ebda66a0c95a349467699b) -- Rename functions to js case [`004adc8`](https://github.com/eea/volto-slate/commit/004adc85db75641c796dd84b4c23f59de224dab5) -- Allow inline styling of everything [`fe43e55`](https://github.com/eea/volto-slate/commit/fe43e558df81f78c0b8592bc8d2de06513933924) -- Added a doc comment [`ce2dae6`](https://github.com/eea/volto-slate/commit/ce2dae64adc80d06b4b3bebbe7d9287f8ef33088) -- Added a doc comment [`4923b46`](https://github.com/eea/volto-slate/commit/4923b46a9ac04e315395fff7f55224a9ad57a020) -- Added a doc comment [`53f76cf`](https://github.com/eea/volto-slate/commit/53f76cf07e9ba49d25aef729441807b3e16cde85) -- Added a doc comment [`549d329`](https://github.com/eea/volto-slate/commit/549d329c7c0682b35cc1b59d2687c72cd18f8717) -- A little bit of cleanup [`9f35399`](https://github.com/eea/volto-slate/commit/9f35399c2a3d1805baa46d642d94440ea60808c4) - -#### [0.4.2](https://github.com/eea/volto-slate/compare/0.4.1...0.4.2) - -> 12 August 2020 - -- Allow inline styling of void elements [`f146bdc`](https://github.com/eea/volto-slate/commit/f146bdc8093a704de1d274df1686c9c81bb530c7) -- Fix spanDeserializer [`db3ef19`](https://github.com/eea/volto-slate/commit/db3ef19563a5d916bb0056269e1891a7abb29097) -- Added TODO for <b> tag; renamed function [`8a56831`](https://github.com/eea/volto-slate/commit/8a5683188f87d68fb0c311d47dfc77521e0e4558) -- Enable HighlightSelection, added comment about problem [`d5360ca`](https://github.com/eea/volto-slate/commit/d5360ca98e92f913c4740377bc7490f976279c0a) -- Fix hooks rule problem [`f48bf68`](https://github.com/eea/volto-slate/commit/f48bf686f87c432560d958e295aacfd46f6c2934) -- Fix selection problem [`b0f9f24`](https://github.com/eea/volto-slate/commit/b0f9f242f575b818f0de2463a10a93befd525ebb) -- Working block emitter for tables inside Slate Text blocks + cleanup [`2c5fb85`](https://github.com/eea/volto-slate/commit/2c5fb85959057b6e667ba5c5b4ce38ad6e18ed57) -- Improved style of tables inside Slate Text blocks [`21cdc11`](https://github.com/eea/volto-slate/commit/21cdc11d27461b330c83e68c19b7e7a324dfd8f0) -- Table toolbar button inserts into current block + some new doc comments [`21feffd`](https://github.com/eea/volto-slate/commit/21feffd076224fa9ad0d8099abf72331e3afd2b4) - -#### [0.4.1](https://github.com/eea/volto-slate/compare/0.4.0...0.4.1) - -> 11 August 2020 - -- Added wrap inline markup text [`a3a6e21`](https://github.com/eea/volto-slate/commit/a3a6e219c2512585c6d6773c2545f75cf31a5144) -- Revert "Clarified comments + solved small issues + extracted new functions" [`f7e6fae`](https://github.com/eea/volto-slate/commit/f7e6fae3bb5729d68c3579d8b5c0a702d4bfcd3b) -- Clarified comments + solved small issues + extracted new functions [`dbd8bc5`](https://github.com/eea/volto-slate/commit/dbd8bc5c35434c386a929f6345c87f1f32d2a63a) -- Fix styling of inline elements [`96e1397`](https://github.com/eea/volto-slate/commit/96e1397af8a5b51647f31cece1ab6bbb5443a908) -- Bump version [`35a0735`](https://github.com/eea/volto-slate/commit/35a0735903511523b8ebd7685114556d4d3c8ae8) -- Tables created w/ table size picker have first row formatted differently [`e89eab0`](https://github.com/eea/volto-slate/commit/e89eab043da6054384a6ee368e242bfa3f7fc2c6) -- Better unwrapping [`7eadc14`](https://github.com/eea/volto-slate/commit/7eadc14d27bb051bb9cbe377989422354cbb399b) -- Fix unwrapping footnotes [`16e97cd`](https://github.com/eea/volto-slate/commit/16e97cd6218233b757c54287cfdee9cd27313fc9) - -#### [0.4.0](https://github.com/eea/volto-slate/compare/0.3.9...0.4.0) - -> 11 August 2020 - -- Fix inline styling [`06e6e6f`](https://github.com/eea/volto-slate/commit/06e6e6f360de0ff30d425ade55e817bf670b79c2) -- Code cleanup [`d989283`](https://github.com/eea/volto-slate/commit/d989283d20ab7e9bba28c1efcbf412125a996fba) -- Fix expanded toolbar [`5ddc775`](https://github.com/eea/volto-slate/commit/5ddc7756ff74dda983da3291b90d543485a77b52) -- Remove logging call [`2e7b47b`](https://github.com/eea/volto-slate/commit/2e7b47b3be905857517fabec2d75ee3866e9648f) -- Fix but with footnote editor sidebar [`3cfe975`](https://github.com/eea/volto-slate/commit/3cfe975708f2cba94cc2be5bbc09486e68e5645e) -- Better footnote context button [`ecb01d4`](https://github.com/eea/volto-slate/commit/ecb01d433f2af1c5f5438722dcdc6e0e0445b161) -- Merge table-button branch [`41a073f`](https://github.com/eea/volto-slate/commit/41a073fd66a778448942891b0b54332718126c71) -- Better handling of collapse selection when adding new footnote [`93f2bc9`](https://github.com/eea/volto-slate/commit/93f2bc9e289a6e1ab402a6949423c87d0bf9c8b1) -- Improve handling of selection highlighting [`071e3b1`](https://github.com/eea/volto-slate/commit/071e3b1e84d94c535e69f6f65d55910bf73d38af) -- Delete unneeded files [`151f976`](https://github.com/eea/volto-slate/commit/151f976408af31db613bf94c928d13c7d681a589) -- WIP on footnote button [`a4210bc`](https://github.com/eea/volto-slate/commit/a4210bcfbde6e313a873bdb141d534843648d831) -- WIP on footnote button [`e222f79`](https://github.com/eea/volto-slate/commit/e222f79500e07152edea989fac81a033727b0d7e) -- WIP on footnote button [`1c39a5d`](https://github.com/eea/volto-slate/commit/1c39a5d446caf4d9fa7f108eefa8ac32a4a6463a) -- WIP, refactored footnote button [`ea40ac2`](https://github.com/eea/volto-slate/commit/ea40ac20c027ed9bf25c78c81182135d15ef0b33) -- Revert "New <li> deserializer that ignores direct <p> child but takes its content" [`772aa9f`](https://github.com/eea/volto-slate/commit/772aa9fa8e9c85e6eff32851f1d596bc2b1d9a8b) -- Solved 2 browser console warnings + separated a little LESS from JS [`9520aed`](https://github.com/eea/volto-slate/commit/9520aedfdcdca4aebb00a501d529842559499250) -- Focus the newly created Slate Table block [`cfe04eb`](https://github.com/eea/volto-slate/commit/cfe04eb9f8088dd7c5d0994c75403f72513b321e) -- Table size picker works but does not focus the new table [`035cf27`](https://github.com/eea/volto-slate/commit/035cf27fd4e9da92333d60beb235e10fc05b18c4) -- Store live object as savedSelection [`1163fa2`](https://github.com/eea/volto-slate/commit/1163fa233dae0d15abd509afafa066f2e55b9dbc) -- Improve style, make it more like Volto [`5ca617d`](https://github.com/eea/volto-slate/commit/5ca617df536935b1b6bff99d687fec7fc293165c) -- WIP, refactored footnote button [`c75cdaf`](https://github.com/eea/volto-slate/commit/c75cdafdbfe82956d56a8b29ced3b6d16c689955) -- Reset state before showing the TableSizePicker [`14cc81b`](https://github.com/eea/volto-slate/commit/14cc81b7f328e9a3a710af2e804bd68e19301d77) -- WIP [`64d6ee4`](https://github.com/eea/volto-slate/commit/64d6ee4d136c9a2bb532611ab5fbcd5596c9b2d5) -- Cleanup + LESS improvements + another small change [`920dbc1`](https://github.com/eea/volto-slate/commit/920dbc191fffc2aaf80921a66444acbff95dee4b) -- Improved style + table size picker resizes itself for the user [`fc6c3c6`](https://github.com/eea/volto-slate/commit/fc6c3c66832caa3e843b67ebe8ab3028c6fd7c29) -- Open table size picker on click not mouseEnter [`a143b1f`](https://github.com/eea/volto-slate/commit/a143b1f61b8c6bb712c4e944f16582890fa0e04b) -- Moved a LESS file import and renamed a component [`5286f08`](https://github.com/eea/volto-slate/commit/5286f081c3087d785c6c24354580d9c75d91112d) -- WIP on active cells' background style [`1e6683a`](https://github.com/eea/volto-slate/commit/1e6683a916b8eb374f2721b6ea83b8fea6998d27) -- WIP on table size selector's components [`1cecefe`](https://github.com/eea/volto-slate/commit/1cecefe822358fd07df663bdc976c4b828835b24) -- WIP on table button and menu [`3184d49`](https://github.com/eea/volto-slate/commit/3184d4968232106a864c63502229b82e0b7508b6) -- WIP [`2b3afb5`](https://github.com/eea/volto-slate/commit/2b3afb5770ea9656e419d5c38b77d4438c7c3e29) -- New <li> deserializer that ignores direct <p> child but takes its content [`23caf88`](https://github.com/eea/volto-slate/commit/23caf88f42aaf006ed5931fa19e923b9cd6ab622) -- Fix bug in decorate [`3853fe1`](https://github.com/eea/volto-slate/commit/3853fe1be8fe9c66cde1aa55a0e74e70a12e9a61) -- Refactored footnote plugin [`2ea1425`](https://github.com/eea/volto-slate/commit/2ea14252a4f606dca138f736709322ebfffd9056) -- Make selection highlight work [`9e46d09`](https://github.com/eea/volto-slate/commit/9e46d096a3de222743eb34859f2dc04a05d08867) -- WIP on fixing selection handling [`cc6bf22`](https://github.com/eea/volto-slate/commit/cc6bf222558474c9e385a69877549b0c181e34c9) -- WIP on fixing selection handling [`4062337`](https://github.com/eea/volto-slate/commit/40623376bc56cdbee284aae071abe8424898d0b4) -- Refactor toolbar [`46697e1`](https://github.com/eea/volto-slate/commit/46697e1fd34f8c46e8f7b0b5f9f586005e4b6928) - -#### [0.3.9](https://github.com/eea/volto-slate/compare/0.3.8...0.3.9) - -> 6 August 2020 - -- Make footnotes node types configurable and extendible [`3f1cf82`](https://github.com/eea/volto-slate/commit/3f1cf8209dd5c64ba43cbd43953daa3dfa9cdc7d) - -#### [0.3.8](https://github.com/eea/volto-slate/compare/0.3.7...0.3.8) - -> 5 August 2020 - -- Code cleanup [`f049530`](https://github.com/eea/volto-slate/commit/f049530fd73f8f882013dce156a6a63b8faeaa9e) -- Code cleanup [`72f8f69`](https://github.com/eea/volto-slate/commit/72f8f69c5f35f75ae461353c66b4392525d03b31) -- Added usePluginToolbar [`772fdd9`](https://github.com/eea/volto-slate/commit/772fdd9aafc65fa8c04f00c45ca0598a4a70341c) -- WIP on more friendly footnotes [`e31bec6`](https://github.com/eea/volto-slate/commit/e31bec6852ad0990d515ca3a7d9baa6e008e5817) -- Small changes that make the footnotes code work again [`0ea4dc4`](https://github.com/eea/volto-slate/commit/0ea4dc4e2ff9df018056aaf30597491676677fba) -- Disable marks (bold, italic etc.) for selection inside footnote [`3fe8106`](https://github.com/eea/volto-slate/commit/3fe810640f6f71d0243f9f7702f7e86d57851b55) -- Added files [`199f5a3`](https://github.com/eea/volto-slate/commit/199f5a3b4badc00755f9a003c1065934f6577cdc) -- Refactor toolbar [`f3b2747`](https://github.com/eea/volto-slate/commit/f3b2747101fde07e2dd2aaa42a681d5ae41d353d) -- Solved issue: textarea empties itself on click [`21ad480`](https://github.com/eea/volto-slate/commit/21ad4809e6ece46922e741e6e03f3c77d1c864a0) -- WIP to solve issue: textarea empties itself on click [`81f8971`](https://github.com/eea/volto-slate/commit/81f8971d7006725ac8c0f9fcb0f883a31b09b9c0) -- Show the footnote toolbar only on collapsed selection [`f9af0ce`](https://github.com/eea/volto-slate/commit/f9af0ce0f614ad99657f129ef1c2066809cd7a9b) -- More work on footnotes feature [`08f1cfe`](https://github.com/eea/volto-slate/commit/08f1cfe147a99eaa8f27332266b823353f232dba) -- Removed some duplicate code [`745a2f5`](https://github.com/eea/volto-slate/commit/745a2f55f2b739291e8405f7cbc0e47583aa51c4) -- Working footnote React context [`7ddde4c`](https://github.com/eea/volto-slate/commit/7ddde4c9ff3b4494e8e47ee23878540abce9c17b) -- Cleanup code [`89cd5f8`](https://github.com/eea/volto-slate/commit/89cd5f8eda364bbf6bb83abc3119f783d2d91376) -- Style is good, attempt to share footnote data using a context [`ed4cf83`](https://github.com/eea/volto-slate/commit/ed4cf839305348a4f529e41aa7216416242e6160) -- Table pasting works well [`900b48a`](https://github.com/eea/volto-slate/commit/900b48ac5e639679e4ffa34b3dd1e8b4a3523881) - -#### [0.3.7](https://github.com/eea/volto-slate/compare/0.3.6...0.3.7) - -> 2 August 2020 - -- Add stub table deconstructor [`f256192`](https://github.com/eea/volto-slate/commit/f256192db98e0b60cae333e35ea4e8f4bbfc7246) -- Split image block deconstruction to separate module [`879e23a`](https://github.com/eea/volto-slate/commit/879e23a562677fda5e258d45701d55acbc98cd91) -- WIP on table paste handling [`f0b71ce`](https://github.com/eea/volto-slate/commit/f0b71ce8305a861707289af32f21bab1eb9cbf24) -- WIP on table paste handling [`3f98c7f`](https://github.com/eea/volto-slate/commit/3f98c7f9c0723d7e1aaad8f2c67cedaa1ebbfbbe) -- WIP on table paste handling [`9f68586`](https://github.com/eea/volto-slate/commit/9f68586e6a3e48dd8596c7cfb6e8c01c0408eee6) -- rename config method [`5e804b3`](https://github.com/eea/volto-slate/commit/5e804b3faf11078564013c38ee1da0166faf6328) -- Refactored blocks [`165582c`](https://github.com/eea/volto-slate/commit/165582c65f4d574cb8fa8e495e54f7e49aa2e4dd) -- Don't use TextBlockView in Table Cell View [`98e6d6a`](https://github.com/eea/volto-slate/commit/98e6d6a29286ee3cd16852e2222274e949a38f9c) -- Reorganize blocks [`6af8de4`](https://github.com/eea/volto-slate/commit/6af8de4013886228ab664c9fadb06086144dd377) -- Renamed TablePaste to Table [`c4c94cd`](https://github.com/eea/volto-slate/commit/c4c94cda3449f70e1c54da7fd4cdd49204d0f97a) -- Improve paste handling [`fd665a7`](https://github.com/eea/volto-slate/commit/fd665a71bfd2a20feeba87bd6d70f67c2da979c0) -- Added index module in Table [`8b39ae4`](https://github.com/eea/volto-slate/commit/8b39ae43348a37e911214c6232386e2803e51c9a) -- WIP on table paste feature (partially working) [`60d6025`](https://github.com/eea/volto-slate/commit/60d6025882805ee2780bc72e31c9a75f62106d1e) -- Working prototype of Slate Table block type [`2777185`](https://github.com/eea/volto-slate/commit/277718519efa209b010db862f49a779a26443622) -- Slate Table block type w/ 1 issue: [`85449d6`](https://github.com/eea/volto-slate/commit/85449d6c242857b884b2b45d000faa2020007875) -- WIP on Cell & Edit components for Slate Table block [`092bb9d`](https://github.com/eea/volto-slate/commit/092bb9dc8ca51ff45b1418793316c7fef9b845d8) -- Partially working Slate.js-based Table Edit component [`81b22ed`](https://github.com/eea/volto-slate/commit/81b22edfe8725779218fb3fc5a6afde9f5eebc48) -- WIP on Slate.js-based Volto table block [`916d7a5`](https://github.com/eea/volto-slate/commit/916d7a54acf8affbcbda04df6463abcccbc1dd80) - -#### [0.3.6](https://github.com/eea/volto-slate/compare/0.3.5...0.3.6) - -> 30 July 2020 - -- Release 0.3.6 [`ffe1528`](https://github.com/eea/volto-slate/commit/ffe15287adc2aac43a26d2e9fec55f8ad453ba1b) - -#### [0.3.5](https://github.com/eea/volto-slate/compare/0.3.4...0.3.5) - -> 30 July 2020 - -- Finished work on image paste feature [`dad1ff0`](https://github.com/eea/volto-slate/commit/dad1ff075123efb57f551ab6aa69963b085f4eb8) -- Added image utils [`56a6f00`](https://github.com/eea/volto-slate/commit/56a6f00326305e0731bc75e46a6d0c061dc91c14) -- Improve paste handling [`44bb370`](https://github.com/eea/volto-slate/commit/44bb370011613493056bdd8c2fa4a0774dabef8a) -- Pasting an image URL shows the image but does not upload it [`bf4845c`](https://github.com/eea/volto-slate/commit/bf4845cdb48fd69154266bc7bbb3c536a9fba79c) -- WIP on paste handling [`776a5dc`](https://github.com/eea/volto-slate/commit/776a5dc7322f85060b0baccf47c51480778167e8) - -#### [0.3.4](https://github.com/eea/volto-slate/compare/0.3.3...0.3.4) - -> 28 July 2020 - -- Remove logging call [`18ca8f2`](https://github.com/eea/volto-slate/commit/18ca8f28913cf110b5be2152878c81db49f34f9b) -- improve deconstruct volto blocks [`c90d8b9`](https://github.com/eea/volto-slate/commit/c90d8b976c29bb6a919e91ad3b93e9b0359c89e8) -- Further simplify deserialize [`be155f1`](https://github.com/eea/volto-slate/commit/be155f1a661ce0fd9f63f1c2cdaa68d4616f3cca) -- Simplify code in deserialize [`2225b55`](https://github.com/eea/volto-slate/commit/2225b5538fbc599de4206b0aaf5bde0b9a0548af) -- Format file [`84a227c`](https://github.com/eea/volto-slate/commit/84a227c619f6f770bb43f958eb392a6cbcafa2ee) -- WIP on paste handling [`112bc80`](https://github.com/eea/volto-slate/commit/112bc80e90066144bc2672b803b529aa57b893cf) -- All existing Cypress tests are passed [`c050134`](https://github.com/eea/volto-slate/commit/c050134f68ecc1ea0e8c84ca778aa0d7c3f5fc24) -- Fix to work with stable tag release [`3fb13c7`](https://github.com/eea/volto-slate/commit/3fb13c79d2ee8cb0c48288473f04f29eef4dd850) - -#### [0.3.3](https://github.com/eea/volto-slate/compare/0.3.2...0.3.3) - -> 27 July 2020 - -- Handle sub/sup paste from microsoft word [`13349a9`](https://github.com/eea/volto-slate/commit/13349a9a9e3bbb494b5c06625ffdc11c0f6db678) - -#### [0.3.2](https://github.com/eea/volto-slate/compare/0.3.1...0.3.2) - -> 27 July 2020 - -- Added span deserializer [`5e61ad9`](https://github.com/eea/volto-slate/commit/5e61ad9cdf4c4dd9422a7b1ca68de5b547038903) -- Add sub and sup editor buttons [`be30a7c`](https://github.com/eea/volto-slate/commit/be30a7c704ccc95a271c13f43b3049989e01dc01) -- Fix join and traverse blocks [`356a957`](https://github.com/eea/volto-slate/commit/356a9575bf871303966ed4b4acf7605befc3a1ba) -- Refactor createSlateBlock [`4afd05f`](https://github.com/eea/volto-slate/commit/4afd05fe8702b98adb44f3c669109b66d286592b) -- Improve paste handling [`7222c74`](https://github.com/eea/volto-slate/commit/7222c745c948c83a15a8229778aa67bd75d0d49e) -- WIP on paste [`2ed2ee8`](https://github.com/eea/volto-slate/commit/2ed2ee8569310d3e87fe2e3a7790200bd16c750a) - -#### [0.3.1](https://github.com/eea/volto-slate/compare/0.3...0.3.1) - -> 27 July 2020 - -- Try to get placeholder from data [`07bdb70`](https://github.com/eea/volto-slate/commit/07bdb7034b09a6ec4187df813e87170926a00739) -- Adjust for Volto form_context_clean_breaking branch [`0fe5367`](https://github.com/eea/volto-slate/commit/0fe5367d8e945e15b23396a9ed305cf42a1d1814) - -#### [0.3](https://github.com/eea/volto-slate/compare/0.2...0.3) - -> 25 July 2020 - -- Fix TypeError: Cannot read property ... [`387129e`](https://github.com/eea/volto-slate/commit/387129e652740da45d424b590e0b64ca6b864cb1) -- Fix small issue with merging lists [`629b663`](https://github.com/eea/volto-slate/commit/629b66328b252facd38df79d5a95297d73b00009) -- Fix problem with debug HOC [`66424a0`](https://github.com/eea/volto-slate/commit/66424a027c35ea88d09fe0c5a4a12890838a73f2) -- Fix problem with debug HOC [`0298f37`](https://github.com/eea/volto-slate/commit/0298f37cc652990daf78b3d04a43385b03ab7763) -- Fix key warning problem in node rendering [`4cc0119`](https://github.com/eea/volto-slate/commit/4cc011964591f69139d8e4294b554341092a4498) -- Redo the way footnote ids are done [`cd85af1`](https://github.com/eea/volto-slate/commit/cd85af16faae93de5355bf25336a03a14cb7c0f1) -- The Cypress test 02 is passed again [`7c5d15a`](https://github.com/eea/volto-slate/commit/7c5d15a87f0cba35f4c7b580ac566cad7b1b1796) -- Rebuilt the docs [`ae32093`](https://github.com/eea/volto-slate/commit/ae320930c9131ac3431da54325b16bbf7b204509) -- Corrected a list item in the docs [`d7da2ea`](https://github.com/eea/volto-slate/commit/d7da2eaacc6c4fbe63eeb6f54b6c1f2120ccabeb) - -#### [0.2](https://github.com/eea/volto-slate/compare/0.1...0.2) - -> 22 July 2020 - -- Added .eslintrc.json again [`#1`](https://github.com/eea/volto-slate/pull/1) -- Improved documentation [`ea4593f`](https://github.com/eea/volto-slate/commit/ea4593f9ed2cfd05fc0ddb4807ea159273d6af20) -- Improved documentation about extension points [`9533c4c`](https://github.com/eea/volto-slate/commit/9533c4c38dadc958614dd599f2c9003aacaa5c1c) -- Fix list splitting [`f4a2762`](https://github.com/eea/volto-slate/commit/f4a27628a852d54c5faa6177d352270b719763b5) -- Fix a bug in handling return in lists [`23287f7`](https://github.com/eea/volto-slate/commit/23287f7d8cb41c794c662fd82671aa6369f67e9c) -- Add some info about loading images from clipboard [`62aadb0`](https://github.com/eea/volto-slate/commit/62aadb03024c848a52b224489718ede7a61248fd) -- Fix a bug with editor extensions [`be68167`](https://github.com/eea/volto-slate/commit/be68167255d7b6e484e639d6c0fd59ae213d57c8) -- Working implementation of image paste [`f924803`](https://github.com/eea/volto-slate/commit/f924803a3815a94b59875241d8df1693038c6334) -- Code cleanup [`484027d`](https://github.com/eea/volto-slate/commit/484027d3b0a0da1ab9910d4c044df6790297074a) -- Working image plugin [`75dbaa3`](https://github.com/eea/volto-slate/commit/75dbaa3f3317047b958c08693d50b3fb586e1f53) -- WIP on image paste handling [`1cf5524`](https://github.com/eea/volto-slate/commit/1cf5524d5f7cb7ca7afe2477c3e8bfe38156fa85) -- WIP on image paste handling [`8e3bc46`](https://github.com/eea/volto-slate/commit/8e3bc466d0e868ace58523efe63b2d0c238568b4) -- Split listitems even when cursor is in another block [`b7a9ef6`](https://github.com/eea/volto-slate/commit/b7a9ef6fa3ab5e57da7d1fb159601491e4d2f6e7) -- Added insertData for pasting [`6d93bbd`](https://github.com/eea/volto-slate/commit/6d93bbd859afcf3bd59b736e688a394f2f44dd48) -- Improve move up/down list items [`32f0d3a`](https://github.com/eea/volto-slate/commit/32f0d3a4eb8dc46b5f6dd89a9ff107bdd06ed70b) -- Improve decreaseItemDepth; move util code to utils/list [`e20cf92`](https://github.com/eea/volto-slate/commit/e20cf920c0e106375bf7c5ec52ca5a98fbbd1b14) -- Fix merge [`472f80a`](https://github.com/eea/volto-slate/commit/472f80a05e8643cd2f3b8b89f70ce0ef7057caff) -- Split merge code to separate functions [`f92d9c3`](https://github.com/eea/volto-slate/commit/f92d9c3d04a3d9430a85329cdcb291d559470de3) -- Improve decreaseItemDepth [`1503775`](https://github.com/eea/volto-slate/commit/15037759a2572233470a41921b4ddd23662da704) -- Improve increaseItemDepth implementation [`c1bc15c`](https://github.com/eea/volto-slate/commit/c1bc15c489a63ab6d1a10adba63cd45792b9824a) -- Improve increaseItemDepth implementation [`9596894`](https://github.com/eea/volto-slate/commit/959689436996c55c9048d54fdd1a1cdf20ba4e4d) -- Improve increaseItemDepth implementation [`af9b3f4`](https://github.com/eea/volto-slate/commit/af9b3f4108df1184918155a7513a82df08c6f874) -- Fix traversing blocks [`4780f9a`](https://github.com/eea/volto-slate/commit/4780f9a1a07cf735b4e7785e4f2843b867709cac) -- Cleanup nop behaviour from breakList [`130ccd6`](https://github.com/eea/volto-slate/commit/130ccd61b803fd60bfb66a5cd30dac8972b83563) -- Cleanup [`306fb31`](https://github.com/eea/volto-slate/commit/306fb31089f283a9402a12eaa570838f17abb71e) -- Reimplement indent list item [`2d18b0a`](https://github.com/eea/volto-slate/commit/2d18b0a730fe161847f0730ef615b242bc5cd995) -- WIP on html paste handling [`08584aa`](https://github.com/eea/volto-slate/commit/08584aa84a59319fb6249334e1adbc8085f61b2d) -- WIP on html paste handling [`9fc4046`](https://github.com/eea/volto-slate/commit/9fc404691b7754e7544fbb7e18120f5717bccece) -- WIP on html paste handling [`5c0cc8d`](https://github.com/eea/volto-slate/commit/5c0cc8da1c155d2e287547e02eccdf7a05bbfdcc) -- Rename element link to a [`d83ab78`](https://github.com/eea/volto-slate/commit/d83ab7850eb465fa2447937fdf147c02942621e9) -- WIP on html paste handling [`516c7ff`](https://github.com/eea/volto-slate/commit/516c7ff9046772f07ce1e2f0229fed4dc0994a24) -- Added image upload dropzone [`1c5d750`](https://github.com/eea/volto-slate/commit/1c5d750d334c35b4efbaab51d31905216eeff17f) -- Cleanup console logging, add some comments about list splitting [`1710b35`](https://github.com/eea/volto-slate/commit/1710b359176ef5fac1895ebef1ad0f1c101565fe) -- Improve break in lists [`571cf46`](https://github.com/eea/volto-slate/commit/571cf4679f94102b9fed2e9c0af87eb3dc5d757e) -- Improve indent list item [`8c5c770`](https://github.com/eea/volto-slate/commit/8c5c7709c589b24a2769895c3562637b27d039c8) -- Improve move up/down list items [`6dcf5c1`](https://github.com/eea/volto-slate/commit/6dcf5c1d5368f93e07f061cf87f5ed54a05588e5) -- Improve handling of enter key in lists [`38bd2b3`](https://github.com/eea/volto-slate/commit/38bd2b3e0507e218eaa027ae590ed9ada1beb2ce) -- Improve handling of enter key [`f8d7263`](https://github.com/eea/volto-slate/commit/f8d7263ee24fc5c386ec4b579e518d1ad10df787) -- WIP on list indenting [`a1cd053`](https://github.com/eea/volto-slate/commit/a1cd05350d1dd0b7db2b0ba8b9698034d87eb23d) -- WIP on list indenting [`b7919e2`](https://github.com/eea/volto-slate/commit/b7919e2ad2862e45730680d8f92e9bb37b1b9a28) -- Fix a problem with unindenting list items [`0fa7591`](https://github.com/eea/volto-slate/commit/0fa759193b38da0cf353119da29b9e969bacc2f7) -- Unindent list item as separate block [`c0ca841`](https://github.com/eea/volto-slate/commit/c0ca84143b5520a4748428399d9f126364f28092) -- Solve problem with merging empty block with list [`ffd4b3f`](https://github.com/eea/volto-slate/commit/ffd4b3f38b41b1091b4949ac2bb532c7fba4a400) -- Don't overdo block merging, code is easier to understand this way [`cc69692`](https://github.com/eea/volto-slate/commit/cc69692db45f935cb3844dfc45d83920195c2c38) -- Try to solve problem when backspace in empty block [`0029b1f`](https://github.com/eea/volto-slate/commit/0029b1ff1192feb2c02a638eb351922393d0512c) -- Use nanoid in footnote [`264e920`](https://github.com/eea/volto-slate/commit/264e920ce6b79a077172c5a9be87e22cc436f04b) -- Fix isCursorAtBlockStart [`677d6fe`](https://github.com/eea/volto-slate/commit/677d6fe61511af6cd5b1945f27928d8e9cb9917b) -- Improve backspace in lists [`17a5112`](https://github.com/eea/volto-slate/commit/17a511204b0896e4eca66f5db19decd3c1efda12) -- Fix API for key handling [`4b9dbda`](https://github.com/eea/volto-slate/commit/4b9dbda25e3abbe261da6988960d0e8f3a001e58) -- Improve break in lists [`e7d83a5`](https://github.com/eea/volto-slate/commit/e7d83a567de65fc17ad80a5766370c7d87f2fd31) -- WIP on insert break in list item [`462111e`](https://github.com/eea/volto-slate/commit/462111eaefcfcdf2e335f50249078fe0e2c36e05) -- Fix indenting list item [`fd6320c`](https://github.com/eea/volto-slate/commit/fd6320cbdcdfe3f62267164994e9d4acd49f81c9) -- WIP [`e35bcfb`](https://github.com/eea/volto-slate/commit/e35bcfba4780cb80016924bb0ea9e79182ad9611) -- WIP [`4bea9dc`](https://github.com/eea/volto-slate/commit/4bea9dc64b296e6b25acbf337175a9d8803ff834) -- Renamed elements to their HTML tags [`0471b7f`](https://github.com/eea/volto-slate/commit/0471b7fab30dfc45a566bb5d8e0a8b4a89b461d0) -- Add missing files [`103552e`](https://github.com/eea/volto-slate/commit/103552e08f2da8aa41c36d4d41bd4faf7f7b2414) -- Introduce nanoid for list elements [`8950c70`](https://github.com/eea/volto-slate/commit/8950c70008e924137da312af08f6be55ba02fba4) -- Fix a problem with indenting children [`e56163e`](https://github.com/eea/volto-slate/commit/e56163ea97a4e8c71cdea51a70d2a5bdec309109) -- Improve sublists [`c471d47`](https://github.com/eea/volto-slate/commit/c471d478ace73a84fef7ff9c8793774e5cc0ffa5) -- Improve sublists [`14659ca`](https://github.com/eea/volto-slate/commit/14659ca1e2d9480fbd21566a47035553318b8c73) -- Fix but in handling soft return [`2afc0dd`](https://github.com/eea/volto-slate/commit/2afc0dd3192c0dec1090a975d678866e001001a7) -- Added WIP on tab plugin [`c6f1996`](https://github.com/eea/volto-slate/commit/c6f1996d6e1d37862621bd40f081e8c9c07805cd) -- Fix traversing blocks [`29eac48`](https://github.com/eea/volto-slate/commit/29eac4848b5b1731d7c9041f2bf456433ed38106) -- Better traversing of slate blocks with up/down [`f2e954d`](https://github.com/eea/volto-slate/commit/f2e954d9d03a07321620f79452fdfab89e2d63d5) -- Make softbreak work also in view [`27e47a3`](https://github.com/eea/volto-slate/commit/27e47a3e7f063b0219947ce86ef36b6bf36e717f) -- Move list items with ctrl key [`fea8c5f`](https://github.com/eea/volto-slate/commit/fea8c5f8560210eaa10ffa07b2121437ab5a0191) -- Fix isCursorAtBlockStart [`e7f811c`](https://github.com/eea/volto-slate/commit/e7f811c69af397560c8aaaedf4fa654ef0ed71b1) -- WIP [`319d16c`](https://github.com/eea/volto-slate/commit/319d16c1d2191eb735d6a66aaa853579cf3d8868) -- Renamed method to deconstruct [`79d7d7f`](https://github.com/eea/volto-slate/commit/79d7d7f785342bfedcfa22c32ba33dea49e78693) -- Improve a bit the block button [`bfca5a7`](https://github.com/eea/volto-slate/commit/bfca5a7181c633c28ca05e28e7e2e5ca65748340) -- Improve a bit the block button [`349977f`](https://github.com/eea/volto-slate/commit/349977fcfcf0a1ffe8b51cc82ba50142436295c6) -- Added missing utils folder [`7c544a7`](https://github.com/eea/volto-slate/commit/7c544a7de44f1c990a296df2d1d76240b4dea6b5) -- Make basic join block work properly [`6818ddc`](https://github.com/eea/volto-slate/commit/6818ddc81a70e27ac17c6dabe61b4fdc488afba9) -- Use 5-character random footnote UID strings [`3f62f7f`](https://github.com/eea/volto-slate/commit/3f62f7f471839dcb42e6043a385be60bc2300003) -- WIP [`b381d6e`](https://github.com/eea/volto-slate/commit/b381d6eef9834e0069f830375288565d4bfbdd7d) -- Update README.md [`fa9d707`](https://github.com/eea/volto-slate/commit/fa9d7078244ad2e517b22575d894119dad585cf1) -- Update README.md [`3eeb9f8`](https://github.com/eea/volto-slate/commit/3eeb9f89417fc90d94c1ac925a877d5690fa65a9) -- Update README.md [`ea2c268`](https://github.com/eea/volto-slate/commit/ea2c26828c96d3d5cb60c12fb2cd685e5a729375) -- Added traverseBlocks [`8ae98b7`](https://github.com/eea/volto-slate/commit/8ae98b7c72650be9bbc9da32de5adf57c4ce4930) -- Renamed softBreak [`4069134`](https://github.com/eea/volto-slate/commit/4069134fa548a89e10524dfb8f7581a61104864b) -- Renamed keyboard subpackage [`50f4ba9`](https://github.com/eea/volto-slate/commit/50f4ba9c8c1a08fb55075d0f6d1f78f10ef0f597) -- Solve problem with extensions effect [`6c9ae18`](https://github.com/eea/volto-slate/commit/6c9ae18f020cf829d304ba4099ba37485bba0997) -- New: soft break with Shift-Enter [`c375f8b`](https://github.com/eea/volto-slate/commit/c375f8bdf1389cc2ff473032c70f6e9fd7660a3e) -- Undo some not working code + remove some dead code [`cba618c`](https://github.com/eea/volto-slate/commit/cba618c9c6801043d9ff438616232e7327e301c4) -- Use UUIDs for footnotes [`a12033f`](https://github.com/eea/volto-slate/commit/a12033f15be75c9c499b20d58829f9e0101b9f6e) -- Refactored SlateEditor as component [`38fdf3b`](https://github.com/eea/volto-slate/commit/38fdf3bda9e2e8794c8941a6919dab8ffcc3f948) -- Renamed setSlateBlockSelection to saveSlateBlockSelection [`c3b5715`](https://github.com/eea/volto-slate/commit/c3b571513f00e34867e2cd66605afdc01f6b0dea) -- WIP [`aae3e18`](https://github.com/eea/volto-slate/commit/aae3e18b83ad9282329c4cfc02a8c61f4828ce27) -- WIP [`aa7c655`](https://github.com/eea/volto-slate/commit/aa7c655f05ee709406e09744e9b514ffb139cae2) -- WIP [`09f16a1`](https://github.com/eea/volto-slate/commit/09f16a1e5d07e345cc62c59a9c6f73d2daea47a6) -- WIP [`0f3b08a`](https://github.com/eea/volto-slate/commit/0f3b08a1c5e3266913340ebf6af4e76863d2c548) -- Small cleanup [`68dec47`](https://github.com/eea/volto-slate/commit/68dec47a26dad91f7d73726d1261b761b9ed76b0) -- WIP [`a6c9726`](https://github.com/eea/volto-slate/commit/a6c97263b078b68bff68acc2106e36a80deaa1e2) -- Moved more code into withTestingFeatures.jsx [`38635d9`](https://github.com/eea/volto-slate/commit/38635d90f2c43f9b8df31017c979fbd377c8149a) -- Renamed editorPlugin => extension [`ef2b193`](https://github.com/eea/volto-slate/commit/ef2b19351cb349696e32e57ca6f9cea1d2a5f93e) -- Move stuff to editorPlugins from editor [`028b6d6`](https://github.com/eea/volto-slate/commit/028b6d61dd84a544882814bb3d354c8adcdc63b6) -- Fix counter reset problem [`eaa86fa`](https://github.com/eea/volto-slate/commit/eaa86fa63b0511689828ae94bf612f0d4cd7a75e) -- Tweak styling [`cfdfa7f`](https://github.com/eea/volto-slate/commit/cfdfa7ff9c41bc6169ba7941188e8d2f82a3e1ea) -- Added a TODO [`3b3a097`](https://github.com/eea/volto-slate/commit/3b3a0979a13a3c168ba343ccdf6b77c479b1437b) -- Fix button [`c8058de`](https://github.com/eea/volto-slate/commit/c8058de9cc80f7328ea3d6985c76705f4618dfc8) -- Added decorate highlight [`6d379a2`](https://github.com/eea/volto-slate/commit/6d379a28ec95a8d7abc7159c75c825b8092a2f3e) -- Added decorate highlight [`70da7cb`](https://github.com/eea/volto-slate/commit/70da7cb1fa5b5e2265b0cd51d697917e55bddea5) -- Read form data from editor data [`f06e24e`](https://github.com/eea/volto-slate/commit/f06e24eace134e715d34ca82531d77839e1c2e08) -- WIP on making footnote form read data [`10e0888`](https://github.com/eea/volto-slate/commit/10e08883f6aa7ec36cdc3b0909b0a2a6d2ad8765) -- Added backlink to initial reference [`c4c5933`](https://github.com/eea/volto-slate/commit/c4c59333e874be0024de7bdf93ee2735d0cfa3a3) -- Added title field for the footnotes listing block [`317c028`](https://github.com/eea/volto-slate/commit/317c02891681865119084124486219b0f8f87361) -- WIP on footnote block [`9d6df25`](https://github.com/eea/volto-slate/commit/9d6df259dae2f50f2329ec26e29560423b7285a1) -- WIP on footnote plugin [`7cfb3c8`](https://github.com/eea/volto-slate/commit/7cfb3c89f15ce2eea5fef0ed27bf65a2034469a9) -- WIP on footnote plugin [`bea9549`](https://github.com/eea/volto-slate/commit/bea9549803ce487fb6176ca54493a395e001bee3) -- Cleanup less file [`2b5c8f5`](https://github.com/eea/volto-slate/commit/2b5c8f51e1ea2137cf07dec8e759352ccb94c74b) -- Simplify code, added TODO on Links plugin [`9886cb6`](https://github.com/eea/volto-slate/commit/9886cb61cfb0207236fea6cc371b7967cad361ab) -- Simplify, refactor the way slate blocks are rendered in view [`3ceb7cc`](https://github.com/eea/volto-slate/commit/3ceb7ccdd79d439de2176ad3f9eed1f0692767d6) -- Removed hotkeys, remove nops [`ef3297f`](https://github.com/eea/volto-slate/commit/ef3297f022a371e5d57f50105a9decc562817f8a) -- A small change to work with modern_kitchen_sink through yalc [`63d39b0`](https://github.com/eea/volto-slate/commit/63d39b0e73e28d93d993c8b4c704a1202f520613) -- A small bit of refactoring [`c6794df`](https://github.com/eea/volto-slate/commit/c6794df5cb27e84f34a4a96e3c2abe7875cb2881) -- Improved logic for: selection is on the last list item in a list [`7e60509`](https://github.com/eea/volto-slate/commit/7e6050953be387f2456d54e9623a9af634c5b7e1) -- Cleanup and small refactoring [`db1934c`](https://github.com/eea/volto-slate/commit/db1934c6929a1b8f556a962236b03a3da67edf56) -- Another bit of refactoring [`da534af`](https://github.com/eea/volto-slate/commit/da534af77518ad91de3169be0e89a1a833dec869) -- A very little bit of refactoring [`fe5c87e`](https://github.com/eea/volto-slate/commit/fe5c87e4c090140f6d6867024d3a906ff6a937ec) -- Solved issue: split block, new block empty but with formatting [`50714fb`](https://github.com/eea/volto-slate/commit/50714fbfbbe08626c63f88e5f16bdda801afd1d9) -- Solved bug with bold and heading [`0093f03`](https://github.com/eea/volto-slate/commit/0093f03a6321b0f16e63beddd5fcc50610be8ba9) -- Corrected toolbar positioning [`a54bc21`](https://github.com/eea/volto-slate/commit/a54bc21ebbf9bcee19bbbd43a73ba533abeed28d) -- Cleanup + new HOC for tests: withTestingFeatures [`1e6dca5`](https://github.com/eea/volto-slate/commit/1e6dca53198c4948bea5e15e090493b99c8db443) -- For toolbars started using div instead of Menu [`45f5aaf`](https://github.com/eea/volto-slate/commit/45f5aafe0b06557ed27550d22e866837c81f9adf) -- Improve toolbar box-shadow [`e3c91db`](https://github.com/eea/volto-slate/commit/e3c91dbb44f0a0e13349dc565b984deb9a942af6) -- Improve toolbar box-shadow to be like draft toolbar [`426ee61`](https://github.com/eea/volto-slate/commit/426ee612d34eac8af59fcf2b715a8109ee52dd0e) -- Improved toolbar styling to be like in draft blocks [`560c946`](https://github.com/eea/volto-slate/commit/560c946ba7b08f450c64ca4fcb973a0e6f585bff) -- Refactored SlateToolbar [`7ec37ea`](https://github.com/eea/volto-slate/commit/7ec37ea64446e596e7a65f1379a3b4672c35d2cd) -- Some refactoring, moving stuff around [`cba7de1`](https://github.com/eea/volto-slate/commit/cba7de19b0be29949b59166a0de9b57765c476d8) -- Small cleanup [`dadd922`](https://github.com/eea/volto-slate/commit/dadd922f2882f8b893a58c8b069d3fa825191d09) -- Work on toolbar style [`2bcf341`](https://github.com/eea/volto-slate/commit/2bcf341a9f33e03b5ec8b0c9fa348fdd7208f850) -- Cleanup, comments and style improvements [`484ce49`](https://github.com/eea/volto-slate/commit/484ce496b2fbcc49bfb57911d1f9481193ed46a7) -- WIP [`4405c5e`](https://github.com/eea/volto-slate/commit/4405c5e66d017df3da9770e9500cccfdcd10f256) -- Reorganize folder structure [`8d4a2a8`](https://github.com/eea/volto-slate/commit/8d4a2a86ba589df77fb659baf4f9a30c81482e1d) -- Implement pipeline [`0a4e21b`](https://github.com/eea/volto-slate/commit/0a4e21b7b3ac21146856352c551eec176f8f2807) -- Fix rendering of leafs [`8c2f5ee`](https://github.com/eea/volto-slate/commit/8c2f5ee89988d985f226f4d6393c7d5ee174fb81) -- Get rid of leafTypes [`365611c`](https://github.com/eea/volto-slate/commit/365611cc6132715280137753f399a6727759f6da) -- Improve styling of shortcuts block; restructured elements definitions [`e78caa9`](https://github.com/eea/volto-slate/commit/e78caa99e8f2da037020548b24c8d136a1462107) -- Move default element renderers to settings.slate.elementRenderers [`8e5a38c`](https://github.com/eea/volto-slate/commit/8e5a38c23d8593198d925b3996143798f99fdab4) -- Refactored a bit leafs rendering [`979d7f6`](https://github.com/eea/volto-slate/commit/979d7f60dd9c9a4511d99943316d37dd44da2f4e) -- Added separator before expand toolbar button [`6667d4a`](https://github.com/eea/volto-slate/commit/6667d4a9d5d40f57d11ffb2f6a929575c014dd0d) -- Improve separator styling [`bffcceb`](https://github.com/eea/volto-slate/commit/bffccebd25581886cc9aa69bd68f638107e61434) -- Improve styling [`bcd270d`](https://github.com/eea/volto-slate/commit/bcd270db3765c0dd839e2fe036c370f09ddefe7c) -- Solved some bugs and code smells [`91ef448`](https://github.com/eea/volto-slate/commit/91ef4485f294b9d9701d29de843fb1a05e679a12) -- Improve styling [`b5f6b54`](https://github.com/eea/volto-slate/commit/b5f6b540d08ff77a9c8255540205410ecf7dbe36) -- Fix README images [`defceab`](https://github.com/eea/volto-slate/commit/defceab13eeffbdd137ad80430504737488365bd) -- Fix README images [`7ffdc71`](https://github.com/eea/volto-slate/commit/7ffdc717325dab50dda20ba2ac56aa711d969af4) -- Removed .eslintrc.json temporary [`da3590b`](https://github.com/eea/volto-slate/commit/da3590bea266aadb6a06db41efb2c1aeef97fd30) -- Fix styling [`de23bb5`](https://github.com/eea/volto-slate/commit/de23bb539b7045e95743ca8951eb6b9cdf4408d7) -- Used ESLint on all the files [`a718cd6`](https://github.com/eea/volto-slate/commit/a718cd64ad97ec6406fa21c95327141e597a05d3) -- Use Prettier for all the files in volto-slate [`88dc8ac`](https://github.com/eea/volto-slate/commit/88dc8acd3d3e5a4a6c819d8339d1d9cb14533b4d) -- Working unit tests and updated snapshots [`35b8b2e`](https://github.com/eea/volto-slate/commit/35b8b2e73d68a959b83763c35ce930f99bc85bda) -- WIP on documentation [`1558cbe`](https://github.com/eea/volto-slate/commit/1558cbedd94bee92ac5f5fc26f384329d4c8cbbc) -- Temporarily disabled Image plugin and related code [`578ce21`](https://github.com/eea/volto-slate/commit/578ce2183023ee1ec1ddf82e3665c143b3a3a8b6) -- Improved image rendering + attempt to solve server side rendering issue [`4017ab4`](https://github.com/eea/volto-slate/commit/4017ab4828a7ac4ad328d8e4caec7a7ed265173e) -- Basic image file or image URL paste [`2c07af0`](https://github.com/eea/volto-slate/commit/2c07af04d1e77d10eb85bb08f84f5a75e340e90c) -- Removed a comment [`424d41e`](https://github.com/eea/volto-slate/commit/424d41eab5f413135a831c947eaa256f5b01c5f2) -- A little cleanup [`ff433f1`](https://github.com/eea/volto-slate/commit/ff433f11bc7de2cbda0558a3f810c8704c166c39) -- Strikethrough toolbar button, HTML rich paste [`36e977d`](https://github.com/eea/volto-slate/commit/36e977d2717668bc1381b8cf258f0b80000dd65e) -- Removed 2 commented-out lines [`d9aec4f`](https://github.com/eea/volto-slate/commit/d9aec4fe1f2e06fc22e8d5073b00a7e6bcff2b7b) -- Removed small piece of duplicate code [`fc93ba3`](https://github.com/eea/volto-slate/commit/fc93ba3a9656c9c4577d7b4b650cfd5efbb2be36) -- Cleanup + solved compile errors from previous commit [`cf6ad99`](https://github.com/eea/volto-slate/commit/cf6ad9964eebaee6f681d17e438cc2bd953ec335) -- Cleanup and a little refactoring [`dac8152`](https://github.com/eea/volto-slate/commit/dac8152e1ccbac23c96b7a6317a2d192a1b9663d) -- Images in README.md stored in /docs/images [`61c92bf`](https://github.com/eea/volto-slate/commit/61c92bfdeb4cda9fbbb0dd326469017187553983) -- Added numbers to features in README.md [`8c92e86`](https://github.com/eea/volto-slate/commit/8c92e864214a13018a5a1f88f578e2c3cd8219af) -- Work on switching between Slate block types [`75109ef`](https://github.com/eea/volto-slate/commit/75109efd26cecc7839e9de707481d0eda11b8409) -- More work on switching from one block type to another [`bb4ee38`](https://github.com/eea/volto-slate/commit/bb4ee38cd86f15469051e0e68fb7b976aa0867c2) -- Start to solve many issues related to list toggling (WIP) [`7031d7d`](https://github.com/eea/volto-slate/commit/7031d7d25ff56090895f0edafec4486baf2433f5) -- Replaced Callout plugin with BlockQuote [`4962655`](https://github.com/eea/volto-slate/commit/49626558d07db190dd5f09aa343877b3e2dba5eb) -- Small style improvement for ToolbarButton [`25669de`](https://github.com/eea/volto-slate/commit/25669de9cb470f263ddf3a6d1ba44ca207dea927) -- Improve styling of inline toolbar [`79e88d4`](https://github.com/eea/volto-slate/commit/79e88d414e0bb215a182bdac72bd9373f655f06c) -- Rename Button to ToolbarButton, improve style [`6f0efea`](https://github.com/eea/volto-slate/commit/6f0efea3121b40f95e9718bb3c71e57b8757da9b) -- More work on toolbar styling [`d37142b`](https://github.com/eea/volto-slate/commit/d37142b7192555777b4d9c5279256acd0571cfe7) -- Improved styling + solved issue when going from list to heading [`ff70df8`](https://github.com/eea/volto-slate/commit/ff70df8b2216bbf8c39d179b3a8ac8f80329427a) -- Small update to README.md [`aca7083`](https://github.com/eea/volto-slate/commit/aca7083498ecd73b3a514c77952fd8f5f519dc09) -- Big update to README.md [`f6c0dc8`](https://github.com/eea/volto-slate/commit/f6c0dc8adca69e73108b64c8a1461f640ec0aa4f) -- More cleanup [`395c762`](https://github.com/eea/volto-slate/commit/395c76289a4aeb9c9c9c433892b8295c9977a1bf) -- Cleanup [`5ceeb13`](https://github.com/eea/volto-slate/commit/5ceeb13cd2f6fa322c2b33848192531294935dc4) -- (Shift-)Tab handling works well [`71cbbfb`](https://github.com/eea/volto-slate/commit/71cbbfbad9a6fb150979c28e4815f92304fdb28a) -- Backspace, lists and markdown work better [`1dc9be7`](https://github.com/eea/volto-slate/commit/1dc9be703e5d5a75c6b4f33d7f6ddf985c341de9) -- Improved list functionality + cleanup [`09491ba`](https://github.com/eea/volto-slate/commit/09491ba211962721340e7ed508d553bb61e5063f) -- Converting list to paragraph, list splitting w/ 1 issue [`5547066`](https://github.com/eea/volto-slate/commit/554706659ee87cde68674c499eda1d2833e9f8b0) -- Use code from slate-plugins for the lists (WIP) [`806ccc6`](https://github.com/eea/volto-slate/commit/806ccc6b9c5d916f385cdffdf29e7f116805fbeb) -- Added README.md [`cca58d0`](https://github.com/eea/volto-slate/commit/cca58d07361861a1b064cbeba81ad604e1facf5a) -- Remove links with toolbar button [`300af73`](https://github.com/eea/volto-slate/commit/300af73bf713be53ab7a526afa246c716ab12980) -- Work on Backspace behavior at start of second Slate block [`268c982`](https://github.com/eea/volto-slate/commit/268c982c02fc5f018b7585d344b086d028d24c32) -- Work on splitting lists with Enter on empty list-item [`73771eb`](https://github.com/eea/volto-slate/commit/73771ebb4ef64be97e31c9bae58d1c8632d5d3c4) -- Tab and Shift-Tab work better in deep lists [`34fee74`](https://github.com/eea/volto-slate/commit/34fee7493f9238e28fd01e0913bae00050c2d25c) -- Work on flexible deep lists [`a9dcd1e`](https://github.com/eea/volto-slate/commit/a9dcd1e0af47fcc8fe1d5bb5df63dcfd2b8544f7) -- Fix a bug in default block drag handler display [`fde3600`](https://github.com/eea/volto-slate/commit/fde3600e1bbbe8d25b1899fb77029a23c5f64589) -- Enable the block chooser [`5f52744`](https://github.com/eea/volto-slate/commit/5f5274439ec255b8715a19368733ec13a039e73c) -- Added blockHasValue implementation for slate block [`9df50e8`](https://github.com/eea/volto-slate/commit/9df50e81c97d7c448679644a505eb0d6668d36ec) -- Small cleanup [`21287ee`](https://github.com/eea/volto-slate/commit/21287ee73f2fcc56527d49cbb55066be3861f894) -- Improve Tab handling for deep lists, remove package-lock.json [`d0b68fc`](https://github.com/eea/volto-slate/commit/d0b68fc4aa4705f4d61cafb6155810f4be35cbc4) -- Work on Tab key handling [`4259fdf`](https://github.com/eea/volto-slate/commit/4259fdffcc0cd4dd44e6eccaec637bec89a84d93) -- Solved a bug when editor.selection is null [`faea4f8`](https://github.com/eea/volto-slate/commit/faea4f8d2616653710b4dba4826b22d461e681b6) -- More refactoring [`d8a0f4c`](https://github.com/eea/volto-slate/commit/d8a0f4c6862cd6ba9cd8f0a991f1c360fef41135) -- Started a little refactoring [`c8ffb70`](https://github.com/eea/volto-slate/commit/c8ffb704d9ff6d41cc1bbea5e428eb8bd65a6596) -- A little bit of cleanup [`c03c1f1`](https://github.com/eea/volto-slate/commit/c03c1f1d10f4d034b3d3094fad6dc24178b44f03) -- Refactoring + cleanup [`a4bf241`](https://github.com/eea/volto-slate/commit/a4bf24113942554c965b581e980f6c2e2a89604e) -- Solve issue: user types on the right of the text cursor [`1cbaecb`](https://github.com/eea/volto-slate/commit/1cbaecb31d992d2684545cbaec582e0d268c960d) -- Show 2nd tab in right pane when selecting a Slate block [`da7628c`](https://github.com/eea/volto-slate/commit/da7628c6b635514dbf2fb3ccee4836cbdc035933) -- WIP on addon loading [`2015865`](https://github.com/eea/volto-slate/commit/2015865894134cc6f1253a1f490eb6e57c891914) -- Removed src/config.js [`a588fe6`](https://github.com/eea/volto-slate/commit/a588fe67b80ac04776a7d4a5649930ddc1e66136) -- Handle some headers and block-quote in HTML serialization [`ee63803`](https://github.com/eea/volto-slate/commit/ee63803a43aa24f36fcda9d78c95b65d3da61620) -- Almost done: serializing Slate to HTML for showing to end user [`1c280eb`](https://github.com/eea/volto-slate/commit/1c280ebe982c7f0dba451bdeb2c662764345abe2) -- Work on serializing to HTML for showing to end user [`21aa7b5`](https://github.com/eea/volto-slate/commit/21aa7b50e9734aa5ae02edb49855804148ca0896) -- Stop using appearantly unnecessary fixSelection hack [`807a715`](https://github.com/eea/volto-slate/commit/807a7152950d270cde162d1cf80d9776ee12424f) -- More refactoring [`5f23461`](https://github.com/eea/volto-slate/commit/5f23461f6e4771a2476495bfe6c67e34122f4d38) -- Refactoring in withHandleBreak decorator [`f8329ea`](https://github.com/eea/volto-slate/commit/f8329eae6aac6675a66d9416155ceff252dbf069) -- Revert "Removed all unit tests" [`166fb5c`](https://github.com/eea/volto-slate/commit/166fb5c0b3c4bfb8379ad877a6b9f067351c35b8) -- Removed all unit tests [`3ee85ba`](https://github.com/eea/volto-slate/commit/3ee85ba9f1a6f4073e182954e90df83e22e9fd85) -- Updated withHandleBreak decorator so that all existing integration tests pass [`03ea032`](https://github.com/eea/volto-slate/commit/03ea032a9fd98136cff3038ed161bd19bd397efa) -- Solved bug to pass test 3_spec [`2095e22`](https://github.com/eea/volto-slate/commit/2095e2203a188d6e6a5aafd5fc5a6fe65b2d08ed) -- Avoid a bug in Slate that shows up only in Cypress context [`ea1d72b`](https://github.com/eea/volto-slate/commit/ea1d72b61b4f9266a2409e7436d3888edd03e5dc) -- Custom event for selecting in Slate from Cypress test [`458cc54`](https://github.com/eea/volto-slate/commit/458cc54ab82e78535daed825ff0def732c6ab53c) -- Small change for testing SlateEditor with Cypress [`9896f4c`](https://github.com/eea/volto-slate/commit/9896f4c7c30c2becfa6301608156a2e7474750cb) -- Small change to make the tests work [`7077a0a`](https://github.com/eea/volto-slate/commit/7077a0aad00d3379de3967801e0ee79003530d1a) -- Rename var [`7f0031a`](https://github.com/eea/volto-slate/commit/7f0031a45e2d1ad4c70db8b1b58f13f63ac13e53) -- Don't break on enter in slate block [`348d62f`](https://github.com/eea/volto-slate/commit/348d62f8c4af3a9625d94abe4a28124a50a05e5d) -- Redo reducer integration [`fa00609`](https://github.com/eea/volto-slate/commit/fa006093b07b4aef0194579debf87973877f2968) -- Added selection reducer [`4b5d1ed`](https://github.com/eea/volto-slate/commit/4b5d1ed77e44e87f350dc7bb9f96e264f396f686) -- Work in progress for unit tests [`c5e3d6e`](https://github.com/eea/volto-slate/commit/c5e3d6e50185957d8a1ac941c1accc0bc2acc155) -- New unit test for the withHandleBreak decorator [`67f046a`](https://github.com/eea/volto-slate/commit/67f046aa7b76728cac23cd969430065d5c6d9fd4) -- Work on unit tests [`35795ca`](https://github.com/eea/volto-slate/commit/35795cad7715b3bedb119e53008ead416755881d) -- Upgrades to dependencies [`562bf79`](https://github.com/eea/volto-slate/commit/562bf792dd1b7918c78f7cf177c3bbe79312b65d) -- Partially solved a bug [`cd72e3f`](https://github.com/eea/volto-slate/commit/cd72e3f63f1e946a87d3549424def2804108e233) -- Cleanup + new TODO and FIXME comments [`2522c36`](https://github.com/eea/volto-slate/commit/2522c367a4e492ff77456b20595eac220843bc31) -- Working withHandleBreak decorator for simple text [`48187c4`](https://github.com/eea/volto-slate/commit/48187c4920ae645d3123577b81ea159d18700427) -- Solved a few bugs [`3d2e477`](https://github.com/eea/volto-slate/commit/3d2e4778c3f417f0873a2c75b1b8582ed4ba546b) -- Refactoring, cleanup [`d42aa29`](https://github.com/eea/volto-slate/commit/d42aa29a9730dac2989697a5ca3afbd7acff82d9) -- Small refactoring, work on unit test [`b3517d0`](https://github.com/eea/volto-slate/commit/b3517d08183022aa01859270cf1e6536ae679f31) -- Work on Button unit test [`cbc3e10`](https://github.com/eea/volto-slate/commit/cbc3e102bbfde81074af0fa9bcc77aeaf5379c0e) -- Started work on tests [`625af88`](https://github.com/eea/volto-slate/commit/625af88916303164b35050217fd3149b467adb8b) -- Cleanup code [`0231f41`](https://github.com/eea/volto-slate/commit/0231f419773a5095798369adb7952a880e4d5923) -- Switch isCursorAtBlockStart and isCursorAtBlockEnd implementations [`fdca1d7`](https://github.com/eea/volto-slate/commit/fdca1d78538a02fa95d6cd06f5268e88f5fe1193) - -#### 0.1 - -> 17 June 2020 - -- Extracted withHandleBreak default decorator [`9e4bcc5`](https://github.com/eea/volto-slate/commit/9e4bcc5449c6c876ae6eb96b13779fe652a1415a) -- Removed some dead code [`788bab5`](https://github.com/eea/volto-slate/commit/788bab5376f7cf0de57b1a83321a9572fe8fabcf) -- Work on Backspace handling [`d098480`](https://github.com/eea/volto-slate/commit/d0984805f51a260778175c6133b2267a69a063a5) -- More work on list-item Backspace handling [`38d9d1e`](https://github.com/eea/volto-slate/commit/38d9d1ed1cbc316e0bf1b3ff972e526c37c7e98e) -- Solve bug: both blocks are visible at the same time [`81b2516`](https://github.com/eea/volto-slate/commit/81b2516e46139b9c54d6866895165b7733c4deb4) -- Removed component ToolbarToggleButton [`1b24eec`](https://github.com/eea/volto-slate/commit/1b24eec8eff198daadff3fc259c5837c5754f540) -- Reverted unwanted change [`f8c428d`](https://github.com/eea/volto-slate/commit/f8c428d47c249e40cbe5ffbdee987c7084bc5450) -- Solve bug: selection after Backspace editor merge is wrong [`af3f6d1`](https://github.com/eea/volto-slate/commit/af3f6d18ee7c8233201b3283e99c345ce2e7a60a) -- More cleanup [`b2e698f`](https://github.com/eea/volto-slate/commit/b2e698f467b9c90ec4b9ca25661724cbd4aea1aa) -- More cleanup [`ac4145b`](https://github.com/eea/volto-slate/commit/ac4145b40a546641c0fbada810ad389635e578a5) -- Cleanup [`f1e872d`](https://github.com/eea/volto-slate/commit/f1e872d286718ee204f63aa1d6a8ed6ef7ef2f64) -- Small fix [`681bacc`](https://github.com/eea/volto-slate/commit/681baccdffc9291f8556d1e6252fce9dd09cbe52) -- Small refactoring [`d5842da`](https://github.com/eea/volto-slate/commit/d5842da970bef770e48077ec791d34a1c36dc6bc) -- WIP on editor handling of backspace [`38967f0`](https://github.com/eea/volto-slate/commit/38967f09b564656f673b0822c1105a6b512bfb39) -- Handle tab indenting for list items [`d35bf27`](https://github.com/eea/volto-slate/commit/d35bf2728aa6101fc8e87629601df965a1fd03c9) -- Handle list items [`465de3f`](https://github.com/eea/volto-slate/commit/465de3fd0290f9921c120ce79844860e2f08ba65) -- Improve handling of backspace key join blocks [`d3dac74`](https://github.com/eea/volto-slate/commit/d3dac743fa1a4eaae0013f9f39126cd8990d2ab9) -- Improve handling of block if split [`fe487ea`](https://github.com/eea/volto-slate/commit/fe487ea13903414a4d7a795500d8fa8ca722a371) -- Naive implementation of split block on enter key [`a900725`](https://github.com/eea/volto-slate/commit/a9007252ecebff391746fb98f0a63cce513cafaf) -- Style change [`8942d9f`](https://github.com/eea/volto-slate/commit/8942d9f5e3660892cdad8f62c1af0e3dc9ff81e6) -- Cleanup [`450379d`](https://github.com/eea/volto-slate/commit/450379da20c1c0b972e7d1916b534b233cc114a8) -- Added small comment [`1fbc441`](https://github.com/eea/volto-slate/commit/1fbc441cb828bd91ddead6feddcbd4ae28855ef5) -- Fix insert break in list behaviour [`e5c5f12`](https://github.com/eea/volto-slate/commit/e5c5f12b5ec6781f469c819900867dfd7c945f86) -- Enter at last empty list element creates+selects the new block [`924a40e`](https://github.com/eea/volto-slate/commit/924a40edadb1d9c33b02bd77f0837986e338d30c) -- Update test snapshot [`bb8cc5a`](https://github.com/eea/volto-slate/commit/bb8cc5a6b04244bfe95c312b443b8009faadf442) -- Rework local deco integration [`11f7ef7`](https://github.com/eea/volto-slate/commit/11f7ef7f6cffe35245a1a4952c7fe5aa0f486ee4) -- Use markdown plugin [`64c475b`](https://github.com/eea/volto-slate/commit/64c475b88120e54d29780c5e8c8af70bf56c48c4) -- Not-working commit [`2aa16a9`](https://github.com/eea/volto-slate/commit/2aa16a93490e3292f1c9be732d6a30d6f6cc5d19) -- Break list on empty Enter on the last item [`d8915e9`](https://github.com/eea/volto-slate/commit/d8915e9568749ae31af7b234408443f096cae1f3) -- Walkaround to Slate bug [`578ef53`](https://github.com/eea/volto-slate/commit/578ef534622e681a29315bafdc96535441644404) -- Break list on empty Enter, almost working [`006f307`](https://github.com/eea/volto-slate/commit/006f307d512a6bfb2edb0b5c9ed83b09c4e0abe3) -- Move Link element to render module [`a35b61d`](https://github.com/eea/volto-slate/commit/a35b61d1abaccc2c9f50278300b37e5c54e05489) -- Shift-Tab navigation between Slate blocks [`d2a6140`](https://github.com/eea/volto-slate/commit/d2a6140db1cb5559db78b2167e53aee4693f3e67) -- Handle tab [`3fb1d85`](https://github.com/eea/volto-slate/commit/3fb1d8562f5ac27af73190432de00a06b8d2f816) -- Cleanup code [`c1aff38`](https://github.com/eea/volto-slate/commit/c1aff3873b1dbd66b7a232a3d33a8ca4dbfe9f0c) -- Work on ArrowDown handler, seems to be working [`df49b45`](https://github.com/eea/volto-slate/commit/df49b45849e8e8ad65945d123f26808cafce17fa) -- WIP on slate down arrow handling [`d6c35fe`](https://github.com/eea/volto-slate/commit/d6c35fe9586de3d044f264af0dd70d5bb0110901) -- Fix Plone service [`32ef70b`](https://github.com/eea/volto-slate/commit/32ef70ba3adc27c72a19cadf31ca9ffaa87c115f) -- WIP [`3b4cc39`](https://github.com/eea/volto-slate/commit/3b4cc39c5e179169ec15acd937fba2e8d16212aa) -- Move deleteBackward behaviour to default editor [`daf07d0`](https://github.com/eea/volto-slate/commit/daf07d007b282ce5b0a2dfb94e208cae071f2e98) -- Added markdown plugin [`180e4ab`](https://github.com/eea/volto-slate/commit/180e4abf5eab6038e14fee28c2d518e6aad1fc47) -- Up arrow key focuses the previous block [`6053f45`](https://github.com/eea/volto-slate/commit/6053f45c74123a72a51f6594eb9302e3e828cdde) -- Stop propagation of arrow keys [`7090139`](https://github.com/eea/volto-slate/commit/70901398a1526d2e8f81188f43b13efdb8cc772b) -- Handle Enter in slate [`cd221ff`](https://github.com/eea/volto-slate/commit/cd221ff4fa5442521dcd31d22f799eabff9e93db) -- Extracted ShortcutListing into separate .jsx file [`33ff7b2`](https://github.com/eea/volto-slate/commit/33ff7b21777c119b241dc7885097ad1c99e41f80) -- Improve toolbar look [`cfe88d6`](https://github.com/eea/volto-slate/commit/cfe88d62cb6516c3eba5f388dbfb522dadae3003) -- Save data with link [`9d377b8`](https://github.com/eea/volto-slate/commit/9d377b8b10b54d8e08786d93cdcbc86876b4c4c7) -- Save data with link [`43fbb41`](https://github.com/eea/volto-slate/commit/43fbb413ff4d07fa78da711e03c33a0b905fb075) -- Fix link insertion [`4839948`](https://github.com/eea/volto-slate/commit/4839948be93a525d457a26a441fb91f16ca71eea) -- WIP on link plugin [`1125384`](https://github.com/eea/volto-slate/commit/1125384dda077b50261d85a9b0edef052df2e394) -- Fix backspace handling [`4755499`](https://github.com/eea/volto-slate/commit/475549946533afabdfee3da88cb9226a69836246) -- Improve handling of block navigation [`7270da1`](https://github.com/eea/volto-slate/commit/7270da1bae196c9b6cf2ae0d179ff46da19496c0) -- Remove react-portal dependency [`a44b789`](https://github.com/eea/volto-slate/commit/a44b7897817979fac82dea3923fa58b332698b95) -- More work [`cf837b9`](https://github.com/eea/volto-slate/commit/cf837b92c09ddecd9989f0514f1df753066a0037) -- Solved small bug [`9c5d2e4`](https://github.com/eea/volto-slate/commit/9c5d2e4a746f842e67d2bb0b354b3001f36cd8f3) -- More cleanup [`0c9513e`](https://github.com/eea/volto-slate/commit/0c9513e8dd2c6d5a9b1cfb4ae4ff1301fcb8264e) -- Some code cleanup [`93fa5c2`](https://github.com/eea/volto-slate/commit/93fa5c2ab5875adec320e625cd3665789013462e) -- Some code cleanup [`821b017`](https://github.com/eea/volto-slate/commit/821b01738e033d5e1372dbc740a87b5170a1c7c9) -- Some work on focus [`2411a4d`](https://github.com/eea/volto-slate/commit/2411a4da7b5c96a6db14a89c13a9644ce1fe9b44) -- More work [`4834549`](https://github.com/eea/volto-slate/commit/4834549a44c125636a230e5fbca63af67c000d65) -- Handle backspace key on first position [`a6bb0a2`](https://github.com/eea/volto-slate/commit/a6bb0a2a16cecac799197f682977193d8216278d) -- Added a comment [`404d0e7`](https://github.com/eea/volto-slate/commit/404d0e7709c4e11727cbabcb0fe9839beb9b9ea3) -- Added callout plugin [`b4d1b7c`](https://github.com/eea/volto-slate/commit/b4d1b7c67f8765b1ec381a3983e3f552c4e20b81) -- Use h2 and h3, not h1 and h2 [`6d37835`](https://github.com/eea/volto-slate/commit/6d3783511d3a5a4e1a6a6e004ef1a6100004df13) -- Autofocus block [`34d6528`](https://github.com/eea/volto-slate/commit/34d6528c2c5cc0ec328e25e54feb7c4c6fd4b60c) -- Style and name changes [`71e18e5`](https://github.com/eea/volto-slate/commit/71e18e53a6a961f57627bc85e63362b3f577b16e) -- Run eslint [`8f1cff1`](https://github.com/eea/volto-slate/commit/8f1cff1f6ced619a05f302d194bd420dd23f06c1) -- Move less import back to its proper place [`2e79e04`](https://github.com/eea/volto-slate/commit/2e79e0438faed4c7728dd38d79bc2a54d9c9136d) -- Fix imports [`8974c0a`](https://github.com/eea/volto-slate/commit/8974c0a928cfe0ee8cc6dfb7399719ad0879a29b) -- More work [`92a01b4`](https://github.com/eea/volto-slate/commit/92a01b477473c0653f6236340ea11c2ddea703f2) -- More work [`6a9443b`](https://github.com/eea/volto-slate/commit/6a9443b11c05ea08f7ab68c6451274805c564531) -- More work [`52a67d8`](https://github.com/eea/volto-slate/commit/52a67d835c8540f558f1633917941adc46147d94) -- Fix error [`5001e29`](https://github.com/eea/volto-slate/commit/5001e292ee08236883bbadfbb3783993b00f628b) -- Fix error [`16aa7a0`](https://github.com/eea/volto-slate/commit/16aa7a0fde9b4e5839d1e6decad83fffe486548c) -- More untested work [`a37cd85`](https://github.com/eea/volto-slate/commit/a37cd85a8ee1666ec022f8eb3832af01fb4e4825) -- Solve warning in browser console [`7444ebc`](https://github.com/eea/volto-slate/commit/7444ebc9705892816a7ef68172b8762f2ee962c6) -- Solve an error [`03ca053`](https://github.com/eea/volto-slate/commit/03ca0534078e1ff40d1b5a6df490d7856c58cf1e) -- More work [`42bc1f9`](https://github.com/eea/volto-slate/commit/42bc1f983115ef8dd251f009144fbd3ddbe8600b) -- Bring back less file [`197138b`](https://github.com/eea/volto-slate/commit/197138b0465d158ccf743e3d8e0d779de59c12b9) -- Added Button test [`587e381`](https://github.com/eea/volto-slate/commit/587e381a14f2f8fd005e330ed40440d12782971c) -- Load buttons from settings [`292d341`](https://github.com/eea/volto-slate/commit/292d3419d5ddb420afcdfb908726c28cb8b09c37) -- Fix leaf rendering [`9523e9c`](https://github.com/eea/volto-slate/commit/9523e9c8ef1b8f634832c078a0f8b1ebeef9f89e) -- Refactored leafs [`3515b95`](https://github.com/eea/volto-slate/commit/3515b956d1ac37c8c8cf0e105fc70471b36c52ea) -- Improve package [`1ff3fc2`](https://github.com/eea/volto-slate/commit/1ff3fc27b997566ae3798bb0d5587867bc2add5e) -- Refactored addon, added Link plugin [`da1d7d9`](https://github.com/eea/volto-slate/commit/da1d7d9e3e868335f385361f8b1e17b31ffe09a9) -- Added LinkButton [`72f03ea`](https://github.com/eea/volto-slate/commit/72f03ea0b3a48a4c34412fa1add994788d748dd3) -- More work [`257f6c4`](https://github.com/eea/volto-slate/commit/257f6c4efe3f7ee19ca0070cb93504cd9ee9997b) -- More work [`fc51cb0`](https://github.com/eea/volto-slate/commit/fc51cb09561ccdbb2baf539b3b972920eec8d725) -- More work [`9ca8fac`](https://github.com/eea/volto-slate/commit/9ca8fac5dd3625f9ddbdb7a66dd4cf3e0ad415ef) -- More work [`44efef9`](https://github.com/eea/volto-slate/commit/44efef9a7b6b0892faa80faa789dc5ce3bb0125c) -- HoveringToolbar working again [`e01450f`](https://github.com/eea/volto-slate/commit/e01450f8a1258609a21d6fddcd0d043994c469ed) -- Renamed some components and their files [`7c6191b`](https://github.com/eea/volto-slate/commit/7c6191b97b129558811533cb659f9d3194a25edf) -- Renamed variable [`3be520d`](https://github.com/eea/volto-slate/commit/3be520d6429fd52f0daa96b693a5e831df06f5ef) -- More work [`877ce5e`](https://github.com/eea/volto-slate/commit/877ce5ef40db120318b317e2b31e8c0f66cdf9b2) -- WIP [`1308cc1`](https://github.com/eea/volto-slate/commit/1308cc196954ee32bf629c250e0e938002e8d92b) -- WIP [`aaa27a7`](https://github.com/eea/volto-slate/commit/aaa27a7aff6f8465d261ac354f47c64294a6c469) -- Not-working commit [`b010f12`](https://github.com/eea/volto-slate/commit/b010f12f1abb163cb6c978bfda00bfd5a8fbe4ac) -- More work [`54ec57d`](https://github.com/eea/volto-slate/commit/54ec57d7aaeec9260ff0222eb4b3d3aaea80fabd) -- More work [`14d4a10`](https://github.com/eea/volto-slate/commit/14d4a10f5feba174729169a9d96018e7ad516ade) -- Working prototype [`d181639`](https://github.com/eea/volto-slate/commit/d181639a6089c8172d97dd083e495b7e327db418) -- Split editor component into its own folder [`01b9b37`](https://github.com/eea/volto-slate/commit/01b9b3738e2cd38701a78e81d2508b78e8497b5e) -- Avoid a bug with toolbar [`dfbb678`](https://github.com/eea/volto-slate/commit/dfbb6783da8ef6b0232546c074409da97efb8e51) -- Redo toolbar styling [`969114d`](https://github.com/eea/volto-slate/commit/969114d43a77af2961e96e8a5ce4f4d8812873f1) -- Styling improvements [`ec94dc9`](https://github.com/eea/volto-slate/commit/ec94dc9d20eca94372c511004c8b4378a14b19a2) -- Basic Slate editor with toolbar [`1b9259c`](https://github.com/eea/volto-slate/commit/1b9259c40703611a484e7f588fe5816330c3a5d4) -- Initial package content [`d34f2f3`](https://github.com/eea/volto-slate/commit/d34f2f3cbea0ae6a1cd9aa5677eaf3ccc54b96f8) -- Initial package content [`6cef6eb`](https://github.com/eea/volto-slate/commit/6cef6eb3725910570e95d900abfbe3e3e8564dba) +#### :hammer_and_wrench: Others + +- cy wait 1000 [Alin Voinea - [`6cd4ec1`](https://github.com/eea/volto-slate/commit/6cd4ec188d652c3c43978fd1612560ad36aa7a89)] +- Better fix [Tiberiu Ichim - [`46822c0`](https://github.com/eea/volto-slate/commit/46822c0cf5c8b9603d714b46ebb17cb4544bd807)] +- Don't overoptimize calculate toolbar position [Tiberiu Ichim - [`bc28375`](https://github.com/eea/volto-slate/commit/bc283750c8f37855ace5e9e9b3ee2512996b1166)] +- Remove production NODE_ENV flag from jenkins [Tiberiu Ichim - [`8c3cab3`](https://github.com/eea/volto-slate/commit/8c3cab3cfe895e6d71badea3a791df3c1aa86fe4)] +- Merge develop [Tiberiu Ichim - [`03f842c`](https://github.com/eea/volto-slate/commit/03f842cddf65425077b0258536009ccedd64323e)] +- Imrpove docker-compose.yml [Tiberiu Ichim - [`428b568`](https://github.com/eea/volto-slate/commit/428b568f4a762ad90ffdd5b9f0379271b88dc975)] +- Fix tests [Tiberiu Ichim - [`008922d`](https://github.com/eea/volto-slate/commit/008922d57bfae3020123a8117e786c669e602fa8)] +- Rename babel.config to make tests pass [Tiberiu Ichim - [`28d3c71`](https://github.com/eea/volto-slate/commit/28d3c719c88e46f59b715ef85aafedfc1e3283b1)] +- Set NODE_ENV to production [Tiberiu Ichim - [`a7eb4ef`](https://github.com/eea/volto-slate/commit/a7eb4ef9e4d8cc01aaae6a0935b8df8a21abc0e5)] +- Update snapshot [Tiberiu Ichim - [`b3beebf`](https://github.com/eea/volto-slate/commit/b3beebf7c7f0c7518c0cccc5bcb8f6db3fdb162a)] +- Add i18n artifacts [Tiberiu Ichim - [`7d25290`](https://github.com/eea/volto-slate/commit/7d2529020afb72ba2a558085fbb5c6786153f15e)] +- WIP on i18n [Tiberiu Ichim - [`d48e979`](https://github.com/eea/volto-slate/commit/d48e9791131cb2a4f1a32c5da3b90d69169bba45)] +### [2.9.1](https://github.com/eea/volto-slate/compare/2.9.0...2.9.1) - 13 August 2021 + +### [2.9.0](https://github.com/eea/volto-slate/compare/2.8.3...2.9.0) - 10 August 2021 + +#### :hammer_and_wrench: Others + +- Bump version to 2.9.0 [Alin Voinea - [`0944dd3`](https://github.com/eea/volto-slate/commit/0944dd37bc2caa928521bb2e246ab8ebdc79c1d4)] +- Cypress on focus fix [Alin Voinea - [`ee591f0`](https://github.com/eea/volto-slate/commit/ee591f0cdf5b67600b77f80012b3597d98c260a1)] +- Add tests for blocks utils: getAllBlocks [Alin Voinea - [`46ffea2`](https://github.com/eea/volto-slate/commit/46ffea2ff28bd7f1bbe072f9992563984dc22202)] +- Update snapshot [Tiberiu Ichim - [`0643c84`](https://github.com/eea/volto-slate/commit/0643c84b32113eac533a90cf1409f1c3767b1e76)] +- Update snapshot [Tiberiu Ichim - [`af3420c`](https://github.com/eea/volto-slate/commit/af3420c5f0c315916c733078129225c13fd2a43b)] +- Code cleanup [Tiberiu Ichim - [`f922647`](https://github.com/eea/volto-slate/commit/f9226479a6fd986b0c41b3f8a2bad08ea45cdb1a)] +- Code cleanup [Tiberiu Ichim - [`d32d75d`](https://github.com/eea/volto-slate/commit/d32d75d75104cd22c5ffb5ad3a489d5cabe2dc9b)] +- Improve selection handling from cells [Tiberiu Ichim - [`9dc33ed`](https://github.com/eea/volto-slate/commit/9dc33ed119466fa7530446992228e8254dbea700)] +- Checkpoint [Tiberiu Ichim - [`0ba753b`](https://github.com/eea/volto-slate/commit/0ba753be85ae4819875aea99314558e81585dbfd)] +- WIP [Tiberiu Ichim - [`1b9e48e`](https://github.com/eea/volto-slate/commit/1b9e48e7438832fe5e263a39f21ed83814228d3b)] +- WIP [Tiberiu Ichim - [`8430bee`](https://github.com/eea/volto-slate/commit/8430bee30bee64433e82fda827b1802ac7be3403)] +### [2.8.3](https://github.com/eea/volto-slate/compare/2.8.2...2.8.3) - 19 July 2021 + +#### :hammer_and_wrench: Others + +- Use a link [Tiberiu Ichim - [`928bdc1`](https://github.com/eea/volto-slate/commit/928bdc157cf14b9975a19184c4d56cbc86b40b94)] +### [2.8.2](https://github.com/eea/volto-slate/compare/2.8.1...2.8.2) - 12 July 2021 + +#### :hammer_and_wrench: Others + +- Update SlateEditor.jsx [Tiberiu Ichim - [`6e88544`](https://github.com/eea/volto-slate/commit/6e885440dd603536809cd822b6aa73acbb917e78)] +- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`821e386`](https://github.com/eea/volto-slate/commit/821e386c79307e492546712f8e06cf63e32b206e)] +- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`fc21423`](https://github.com/eea/volto-slate/commit/fc2142376a65be21a02a5e6f21f92c8f6fff6424)] +- fix quotes [valentinab25 - [`205d2bc`](https://github.com/eea/volto-slate/commit/205d2bcf965e7cd5d124d38ddad81dec8e125614)] +- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`afa38ab`](https://github.com/eea/volto-slate/commit/afa38abc1c80f441171e652b46439fb7ee24d865)] +- Lower timeout to 150 [Tiberiu Ichim - [`363652c`](https://github.com/eea/volto-slate/commit/363652c2e891efc8c6be265e62489bb4ba0239ca)] +### [2.8.1](https://github.com/eea/volto-slate/compare/2.8.0...2.8.1) - 1 July 2021 + +#### :hammer_and_wrench: Others + +- Add keyboard handler for detached mode (adds shift+enter soft break as BR) [Victor Fernandez de Alba - [`e085b7b`](https://github.com/eea/volto-slate/commit/e085b7badd6655582a1cd13aa529432525b06c14)] +### [2.8.0](https://github.com/eea/volto-slate/compare/2.7.2...2.8.0) - 24 June 2021 + +#### :hammer_and_wrench: Others + +- Split test command into test and test:fix [Alin Voinea - [`de71caf`](https://github.com/eea/volto-slate/commit/de71cafd5cbf847f61a3b633250528c3c650010b)] +- Add test within scripts and makefile [Alin Voinea - [`1f35a6e`](https://github.com/eea/volto-slate/commit/1f35a6ec017d279f543a97e11336104b30349bc8)] +- Bump release [Alin Voinea - [`aa8b131`](https://github.com/eea/volto-slate/commit/aa8b1316da195f16393e814e05fa909868a66df4)] +- Refactor cypress tests [Alin Voinea - [`3258dc2`](https://github.com/eea/volto-slate/commit/3258dc2c5414b9215ad3d5b020c67336ddb3e87c)] +- Wait for resources to load [Alin Voinea - [`5fa3325`](https://github.com/eea/volto-slate/commit/5fa3325c22ce52d0abe431c714418b993f5355fd)] +- Refs #101 - Cypress integration test block focusing [Alin Voinea - [`98e7617`](https://github.com/eea/volto-slate/commit/98e7617ce3e3e7bfc866f9a9044ea28e20fbccd9)] +- Make the toolbar responsiveness a lot better [Tiberiu Ichim - [`d7eb5bd`](https://github.com/eea/volto-slate/commit/d7eb5bdce12bda520d7d539c8acf50293c685a25)] +- Use a setTimeout on click event [Tiberiu Ichim - [`b25d706`](https://github.com/eea/volto-slate/commit/b25d706109fd992e2388aa6e041a15bdfcc407ba)] +- Remove unneeded code; don't pass withBlockProperties to detached mode widget [Tiberiu Ichim - [`28be533`](https://github.com/eea/volto-slate/commit/28be5336eef0b5e1f069998994f6a11f3c7d7c20)] +- Don't enable detached for disableNewBlocks; need confirmation for this behavior [Tiberiu Ichim - [`c7504e5`](https://github.com/eea/volto-slate/commit/c7504e514145c5a758f6ede4efe356943b087d48)] +- Avoid eslint problems [Tiberiu Ichim - [`4e757fc`](https://github.com/eea/volto-slate/commit/4e757fc9b561d1282a937cd4708487b1ee66a9e1)] +- Disable eslint for line [Tiberiu Ichim - [`c2bb2b5`](https://github.com/eea/volto-slate/commit/c2bb2b564755ccd7e8918fcc5fbc897baf006934)] +- Better handling of whitespace in pasting [Tiberiu Ichim - [`47b2e5d`](https://github.com/eea/volto-slate/commit/47b2e5d663e3b3275db89ac71e6823bdb6d7f575)] +- Fix slate to slate copy/paste [Tiberiu Ichim - [`4c66a50`](https://github.com/eea/volto-slate/commit/4c66a503988be0473810cd0eed98e598e017c873)] +### [2.7.2](https://github.com/eea/volto-slate/compare/2.7.1...2.7.2) - 18 June 2021 + +### [2.7.1](https://github.com/eea/volto-slate/compare/2.7.0...2.7.1) - 18 June 2021 + +#### :hammer_and_wrench: Others + +- Fix UniversalLink openLinkInNewTab invalid string [Alin Voinea - [`89bede0`](https://github.com/eea/volto-slate/commit/89bede0497f8769500e41cc4fcd1a6914d35b688)] +- Added parentId to Blocks chooser [razvanMiu - [`eebd292`](https://github.com/eea/volto-slate/commit/eebd292431a54f476a009c795f3cfa4b8f0b1b52)] +### [2.7.0](https://github.com/eea/volto-slate/compare/2.6.4...2.7.0) - 13 June 2021 + +#### :hammer_and_wrench: Others + +- Bump minor release [Alin Voinea - [`b1276fe`](https://github.com/eea/volto-slate/commit/b1276fe0a092ac1ee76c08775e8ee31ec540afa9)] +- Fix handleKey [Tiberiu Ichim - [`accaa6e`](https://github.com/eea/volto-slate/commit/accaa6e8bf3a8539835c8921607925cf4891c7ed)] +- Add slate editor detached mode [Tiberiu Ichim - [`251f7df`](https://github.com/eea/volto-slate/commit/251f7dfbb02e7d32c602f096a35ae14414facfd4)] +- Add detached mode slate editor [Tiberiu Ichim - [`6d604f6`](https://github.com/eea/volto-slate/commit/6d604f639c5629479077788087bcb02fb8e6bb8a)] +### [2.6.4](https://github.com/eea/volto-slate/compare/2.6.3...2.6.4) - 12 June 2021 + +#### :hammer_and_wrench: Others + +- Add missing id to getAllBlocks helper method [Alin Voinea - [`3cf42e1`](https://github.com/eea/volto-slate/commit/3cf42e11399b4be86f9b807219d01d6131df66f9)] +- Add helper method volto-slate/utils getAllBlocks [Alin Voinea - [`b996af6`](https://github.com/eea/volto-slate/commit/b996af63a03b6daa87f53ff5dacb8212b2e97705)] +### [2.6.3](https://github.com/eea/volto-slate/compare/2.6.2...2.6.3) - 9 June 2021 + +### [2.6.2](https://github.com/eea/volto-slate/compare/2.6.1...2.6.2) - 7 June 2021 + +### [2.6.1](https://github.com/eea/volto-slate/compare/2.6.0...2.6.1) - 2 June 2021 + +#### :hammer_and_wrench: Others + +- Release 2.6.1 [Alin Voinea - [`539ce09`](https://github.com/eea/volto-slate/commit/539ce0995eb1b25da7e08e1378ee0b4096669b8a)] +- Add extra condition [Tiberiu Ichim - [`d45c7da`](https://github.com/eea/volto-slate/commit/d45c7dac6d882d952905db8a4fb31fc8191943df)] +- Improve normalization of blocks in lists [Tiberiu Ichim - [`0611f24`](https://github.com/eea/volto-slate/commit/0611f2419dc2cc09521b466b2a1e2e12e6c4f606)] +### [2.6.0](https://github.com/eea/volto-slate/compare/2.5.0...2.6.0) - 28 May 2021 + +#### :hammer_and_wrench: Others + +- Release 2.6.0 [Tiberiu Ichim - [`8879dd3`](https://github.com/eea/volto-slate/commit/8879dd3ae1e312b7ed522f5fcad55cb2ebe6fa36)] +- Use visibility sensor [Tiberiu Ichim - [`27b3ecc`](https://github.com/eea/volto-slate/commit/27b3ecc908fe8c10a841d32c98515d66f14da975)] +- Refactor, WIP [Tiberiu Ichim - [`448ec90`](https://github.com/eea/volto-slate/commit/448ec9024370b9ce1d1f89e8ec85af19907f2fb6)] +- Somewhat improve table pasting [Tiberiu Ichim - [`283e1e8`](https://github.com/eea/volto-slate/commit/283e1e89c67a0505189d5da791a4b03a05e51622)] +- Improve code tag deserializer [Tiberiu Ichim - [`2df5e35`](https://github.com/eea/volto-slate/commit/2df5e35670cb415e8cbe6585d8cf3f6c2042b141)] +- Improve block normalizing [Tiberiu Ichim - [`98ac956`](https://github.com/eea/volto-slate/commit/98ac95665a3ea0bc155f0a1f9f446f50fe43c0a4)] +- Fix tests [Victor Fernandez de Alba - [`da48467`](https://github.com/eea/volto-slate/commit/da48467326ffdd4161cbe6a3b6c51d63733d9f82)] +- Fix simple link pasting [Tiberiu Ichim - [`ae86a53`](https://github.com/eea/volto-slate/commit/ae86a530f86abc661e61c3286aa8a101cd9d38ac)] +- Don't let <TAB> traverse blocks; improve handling of span in pasting [Tiberiu Ichim - [`b87c692`](https://github.com/eea/volto-slate/commit/b87c692ddc3b448e12c0f416e46b087b6c08cc4a)] +- Implement the simple link deserializer [Tiberiu Ichim - [`7e63bfa`](https://github.com/eea/volto-slate/commit/7e63bfa7e2fa34e77422f242ee7050540d3f1546)] +- Work on normalization [Tiberiu Ichim - [`5a48fda`](https://github.com/eea/volto-slate/commit/5a48fda9e82d77d1d2696be443541cdee1d9a007)] +- Improve list headling [Tiberiu Ichim - [`5fa9a52`](https://github.com/eea/volto-slate/commit/5fa9a529f295d3b34bb2d826dc522c97a4f8dbfa)] +- remove dependencies [valentinab25 - [`c8923bc`](https://github.com/eea/volto-slate/commit/c8923bccb3cda3bc7e140d86833d7741edbd091d)] +- Better toolbar [Tiberiu Ichim - [`f5c7c54`](https://github.com/eea/volto-slate/commit/f5c7c54ea7ee592eef5fb8742e38f4e5aea72a7d)] +- Better toolbar [Tiberiu Ichim - [`3cbb4c1`](https://github.com/eea/volto-slate/commit/3cbb4c11363f12c505f8aae70bead8849eb05149)] +- Make the toolbar more responsive [Tiberiu Ichim - [`68f2717`](https://github.com/eea/volto-slate/commit/68f2717a2342c6cc0d706354119eefb349519529)] +- Fix add button always present, and small fixes in the simple link plugin CSS components [Victor Fernandez de Alba - [`6497285`](https://github.com/eea/volto-slate/commit/64972859c1a8e47376280994ae094aa07ab46358)] +- Fix add button always present, and small fixes in the simple link plugin CSS components [Victor Fernandez de Alba - [`3b7169a`](https://github.com/eea/volto-slate/commit/3b7169ad010e92c9053434df509d6daed6c75239)] +- Fix profile name [Tiberiu Ichim - [`792b077`](https://github.com/eea/volto-slate/commit/792b077c2f593089e97dd7f6c372b6c1787a5f1f)] +### [2.5.0](https://github.com/eea/volto-slate/compare/2.4.3...2.5.0) - 26 May 2021 + +#### :hammer_and_wrench: Others + +- move cypress results to cypress/reports [valentinab25 - [`728530b`](https://github.com/eea/volto-slate/commit/728530b7173908be9efc31c7a12bfcf871973611)] +- Major release 2.5.0 [Alin Voinea - [`def082b`](https://github.com/eea/volto-slate/commit/def082befc4939dfec15afea2fe11e272fc346b0)] +- Add simpleLink addon profile [Tiberiu Ichim - [`81dcda9`](https://github.com/eea/volto-slate/commit/81dcda917a8a7e9fcbf55be111acc848f6636674)] +- Update snapshot [Tiberiu Ichim - [`692df9b`](https://github.com/eea/volto-slate/commit/692df9b96f18e6d806235c905e9613c9a7f17fae)] +- Remove unused import [Tiberiu Ichim - [`e9d776b`](https://github.com/eea/volto-slate/commit/e9d776bf3e64669cf6a14c46508e1eb6960ba08c)] +- code cleanup [Tiberiu Ichim - [`0e5a48a`](https://github.com/eea/volto-slate/commit/0e5a48a85e6fff80dea58c016ee34f9cce20607b)] +- test only cypress coverage [valentinab25 - [`8e8395d`](https://github.com/eea/volto-slate/commit/8e8395d9b86e412c88d2b42623312570f5ace80f)] +- remove debug info, fix path [valentinab25 - [`8fdd77a`](https://github.com/eea/volto-slate/commit/8fdd77aee29f55b2224dab33946ab2607be5d42a)] +- add debug [valentinab25 - [`749e367`](https://github.com/eea/volto-slate/commit/749e36748a737766188409763131e4e7de499a42)] +- Add code coverage [valentinab25 - [`4f5d29d`](https://github.com/eea/volto-slate/commit/4f5d29de0533c47f062e48372b4047edd63d5ad4)] +- remove unused code on post [valentinab25 - [`9806f56`](https://github.com/eea/volto-slate/commit/9806f563e97861e91c18e41d304f6462c7cef801)] +- fix empty stash [valentinab25 - [`5ba2a14`](https://github.com/eea/volto-slate/commit/5ba2a14898f52de38d0133efb98035dca5779aae)] +- add coverage report [valentinab25 - [`30c8a89`](https://github.com/eea/volto-slate/commit/30c8a89dea45500fa18032c83b8c17f28536bbe9)] +- Add missing module [Tiberiu Ichim - [`6ec6218`](https://github.com/eea/volto-slate/commit/6ec6218ea390e1ad2f5dc5b86f72eb0cfc5b52f5)] +- Use normalization to handle list rules [Tiberiu Ichim - [`7caaa7c`](https://github.com/eea/volto-slate/commit/7caaa7c2ec56909312c8f89d5b5eb451eeae8945)] +- Add a try/catch [Tiberiu Ichim - [`5f8bc6e`](https://github.com/eea/volto-slate/commit/5f8bc6e3ea024c512688b10678198be315e5c747)] +- Add back var definition [Tiberiu Ichim - [`9db899e`](https://github.com/eea/volto-slate/commit/9db899e44c4174a4ab1fe7f7c04a0284d1c0a44d)] +- WIP [Tiberiu Ichim - [`dadcceb`](https://github.com/eea/volto-slate/commit/dadcceb9ab65f96ff641432ccc9ea3ef11e43f22)] +- Don't try to lift li nodes at shallow paths [Tiberiu Ichim - [`6bb55de`](https://github.com/eea/volto-slate/commit/6bb55defc291670d884f6d31b4b218f4408c0fb6)] +- Force update [Tiberiu Ichim - [`0d6d080`](https://github.com/eea/volto-slate/commit/0d6d0800c8c5b3948d6efaa7291429bda1f0fac9)] +- Code cleanup [Tiberiu Ichim - [`9612a98`](https://github.com/eea/volto-slate/commit/9612a98cb8f0b7adbef65396eb252e4b201edf7d)] +- Add callout plugin [Tiberiu Ichim - [`3eb7fea`](https://github.com/eea/volto-slate/commit/3eb7feaed5a42fb10cdd6d6acaa7a85ca6a09f78)] +- Use unlink item when link is active [Tiberiu Ichim - [`af3e4e0`](https://github.com/eea/volto-slate/commit/af3e4e065fe7bfbc72fd0a05a1f01663a9c9563f)] +- Make the toolbar better behaved [Tiberiu Ichim - [`2a5e61a`](https://github.com/eea/volto-slate/commit/2a5e61ad3db9ecc0b1240b802c43f3b2f404a0bf)] +- Add link rendering; improve add form handling [Tiberiu Ichim - [`84f495f`](https://github.com/eea/volto-slate/commit/84f495facf23231c6fc05867cd8beb3fecee8080)] +- Rollback [Tiberiu Ichim - [`b0bb09a`](https://github.com/eea/volto-slate/commit/b0bb09a8b102560e5bbc05a0725895f9bae82779)] +- Improve handling of click outside addlinkform [Tiberiu Ichim - [`5195792`](https://github.com/eea/volto-slate/commit/5195792beffdf27a43895f100eb9ebc1e109dc57)] +- Improve highlight of selection in link element [Tiberiu Ichim - [`ddebc39`](https://github.com/eea/volto-slate/commit/ddebc39e92d0bc40b3bdd8bc57db1d17b6dcd8d1)] +- Use intl in link button [Tiberiu Ichim - [`6f95301`](https://github.com/eea/volto-slate/commit/6f95301183586d941873dc86db82920496c8c9af)] +- Improve link plugin [Tiberiu Ichim - [`f1ca1b1`](https://github.com/eea/volto-slate/commit/f1ca1b12d3baab09bff1339475f7445304a892fc)] +- Rename FixedToolbar - PositionedToolbar [Tiberiu Ichim - [`7c12411`](https://github.com/eea/volto-slate/commit/7c124112184a551ddfb4b896c44616d28bb9622b)] +- Add SimpleLink WIP [Tiberiu Ichim - [`10e66c3`](https://github.com/eea/volto-slate/commit/10e66c3a6fa3c68e7a61f8d63ce94c80d488ec34)] +- Add SimpleLink WIP [Tiberiu Ichim - [`e2f06ad`](https://github.com/eea/volto-slate/commit/e2f06adac52c41291b093ce5b2b97df3d55eb8d9)] +- try 2 junit commands [valentinab25 - [`d2a0c36`](https://github.com/eea/volto-slate/commit/d2a0c36fee52ce62f1dbd81bb31661a4703a1843)] +- Add SimpleLink WIP [Tiberiu Ichim - [`fcd53e7`](https://github.com/eea/volto-slate/commit/fcd53e7cb8e2abc40076bdb81842d99e85392be1)] +- specify junit format [valentinab25 - [`d58c9bc`](https://github.com/eea/volto-slate/commit/d58c9bcfaef5c727bc9202599e6797138e3b89f2)] +- fix junit unstash [valentinab25 - [`ed478b8`](https://github.com/eea/volto-slate/commit/ed478b8f8e809f7ceb3b6056a890d2502988fbd9)] +- add junit tests from cypress [valentinab25 - [`cb32875`](https://github.com/eea/volto-slate/commit/cb3287503db61bc6b5cbe96234488321f7ac9c1f)] +- Add simplelink WIP [Tiberiu Ichim - [`e56b5e3`](https://github.com/eea/volto-slate/commit/e56b5e372bda3efaece2211d16140e75d9fd5b8d)] +### [2.4.3](https://github.com/eea/volto-slate/compare/2.4.2...2.4.3) - 12 May 2021 + +#### :hammer_and_wrench: Others + +- Cypress [Alin Voinea - [`d143b6b`](https://github.com/eea/volto-slate/commit/d143b6b60bf31a40821a12762cbae08604a9fcc8)] +- put integration archiving in double try/finally [valentinab25 - [`c81375e`](https://github.com/eea/volto-slate/commit/c81375eea84f5d9ff19ec0fa02f8d7ea05427d60)] +- fixed issue with decoration not being removed if user does not add any data on a new element, also should not remove if the user does not change an existing [Alex Medesan - [`6a38aa8`](https://github.com/eea/volto-slate/commit/6a38aa804e3d62cbbca9f0375f09eb4fa0f85595)] +### [2.4.2](https://github.com/eea/volto-slate/compare/2.4.1...2.4.2) - 21 April 2021 + +#### :hammer_and_wrench: Others + +- Release 2.4.2 [Tiberiu Ichim - [`5b9a4ec`](https://github.com/eea/volto-slate/commit/5b9a4ec5c19eb7e0f8c0a0f2822b7de53d46867a)] +- Make it possible to use tab key to traverse between slate blocks [Tiberiu Ichim - [`05bd772`](https://github.com/eea/volto-slate/commit/05bd7720667d927587e9b7691ad9de5805edbedb)] +- renaming: showExpandedToolbar [Katja Süss - [`4d9de27`](https://github.com/eea/volto-slate/commit/4d9de27841b930834b34360bba46c54a06647102)] +### [2.4.1](https://github.com/eea/volto-slate/compare/2.4.0...2.4.1) - 20 April 2021 + +#### :hammer_and_wrench: Others + +- Release 2.4.1 [Tiberiu Ichim - [`2f148f9`](https://github.com/eea/volto-slate/commit/2f148f93560e4e29da54a568f3210f053fbc6a7c)] +- Update develop [Tiberiu Ichim - [`d195d52`](https://github.com/eea/volto-slate/commit/d195d5216aa8ecce2fa46ccdfcf10079bfbf13e6)] +- Rename showToolbar var => showExpandedToolbar [Tiberiu Ichim - [`799bde7`](https://github.com/eea/volto-slate/commit/799bde7173d02c51db4f631352a71257aedef503)] +- Handle arrows in showing toolbar [Tiberiu Ichim - [`8ba7bbd`](https://github.com/eea/volto-slate/commit/8ba7bbd32d1a4a6a1f439d3a75cb8d852de90443)] +- Some cleanup [Tiberiu Ichim - [`1ce048d`](https://github.com/eea/volto-slate/commit/1ce048d550d2064ca20b91243f72b305b73e28aa)] +- Handle ctrl+a case [Tiberiu Ichim - [`46c7118`](https://github.com/eea/volto-slate/commit/46c71189043b32a0ffffca88a2b3c49e251cf189)] +- Improve show of toolbar from keyboard [Tiberiu Ichim - [`cdeb468`](https://github.com/eea/volto-slate/commit/cdeb4685a24ae09ccc21917bdafcc70ca0ac0491)] +- Upgrade slate to 0.62 [Tiberiu Ichim - [`d4bfdc2`](https://github.com/eea/volto-slate/commit/d4bfdc2e0b3cfde1811a34cdf6bd3bd275197756)] +- Plaintext: join text of node with separating spaces: separate list items [Katja Süss - [`aa75e64`](https://github.com/eea/volto-slate/commit/aa75e6411d9430c97a5846a679b9de21cd7d4a1e)] +### [2.4.0](https://github.com/eea/volto-slate/compare/2.3.1...2.4.0) - 7 April 2021 + +#### :hammer_and_wrench: Others + +- Release 2.4.0 [Alin Voinea - [`980aee8`](https://github.com/eea/volto-slate/commit/980aee84cbade3271261df97ee4666224a874a7f)] +- Add support for onInsertBlock with BlockChooser [Alin Voinea - [`7b1621a`](https://github.com/eea/volto-slate/commit/7b1621a53f66a75c0e2590804d4e6ce547217127)] +- Revert "Add support for newId returned by onMutateBlock" [Alin Voinea - [`85de73b`](https://github.com/eea/volto-slate/commit/85de73bc9aacc8db4ad104a16b7a818caed130a2)] +- DEPRECATE futurevolto: InlineForm, Blocks helpers [Alin Voinea - [`1a64495`](https://github.com/eea/volto-slate/commit/1a64495be0e6acfb5b0eaf469be670d2b6115835)] +- Add support for newId returned by onMutateBlock [Alin Voinea - [`0f806b5`](https://github.com/eea/volto-slate/commit/0f806b54327a5f91439c11f2735ef48c4919be1e)] +- Refs #126375 pass blocksConfig to TextBlockEdit for block config changes: [David Ichim - [`6641388`](https://github.com/eea/volto-slate/commit/66413882d3f4b6c3c0912b0f9fb61183ca33f058)] +### [2.3.1](https://github.com/eea/volto-slate/compare/2.3.0...2.3.1) - 29 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.3.1 [Alin Voinea - [`3f533ec`](https://github.com/eea/volto-slate/commit/3f533ec0f8c067eac3727c59c4deccfa214cc565)] +- Docs cosmetics [Alin Voinea - [`6e59769`](https://github.com/eea/volto-slate/commit/6e59769da6ed01a03ea80d23a4ce58e2e140cdbf)] +- Remove un-released eea.volto.slate dependency from docs [Alin Voinea - [`0683ae6`](https://github.com/eea/volto-slate/commit/0683ae6c497a04376f19f7e557de6b68e9c601ba)] +### [2.3.0](https://github.com/eea/volto-slate/compare/2.2.1...2.3.0) - 26 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.3.0 [Alin Voinea - [`931e8d6`](https://github.com/eea/volto-slate/commit/931e8d6d6d1c9cd43a241fd6362ce07807c7c5e3)] +- Update docs [Alin Voinea - [`a5966b0`](https://github.com/eea/volto-slate/commit/a5966b00b070109793952229759efe630d2646a5)] +### [2.2.1](https://github.com/eea/volto-slate/compare/2.2.0...2.2.1) - 23 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.2.1 [Alin Voinea - [`2e77a2b`](https://github.com/eea/volto-slate/commit/2e77a2bec56201a5ff9791e6aad9e8fa95e8d3ab)] +- Remove sidebar instructions uppercase [Alin Voinea - [`bb7d316`](https://github.com/eea/volto-slate/commit/bb7d31689d82967a0a80f61583b25806f543047f)] +- Export Editor [razvanMiu - [`aa8cd7e`](https://github.com/eea/volto-slate/commit/aa8cd7eb8c77c32e9cd2fc555fba6c2372780d65)] +### [2.2.0](https://github.com/eea/volto-slate/compare/2.1.0...2.2.0) - 22 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.2.0 [Alin Voinea - [`1012983`](https://github.com/eea/volto-slate/commit/1012983ebe09f6523871efbf693a8e8dd46ff0d8)] +- Use link instead of button [razvanMiu - [`7972912`](https://github.com/eea/volto-slate/commit/79729121e308018cec14ef1b8f3fa8d39c1d649a)] +- Scroll to element with offset [razvanMiu - [`b167f27`](https://github.com/eea/volto-slate/commit/b167f27bd3d9116fdaedd1392f5ecdb632b94afe)] +- Prettier fix [razvanMiu - [`62b9312`](https://github.com/eea/volto-slate/commit/62b9312c773713903b28930072352acd268d1d41)] +- Handle hashlink using redux [razvanMiu - [`b277219`](https://github.com/eea/volto-slate/commit/b277219939429258286758c74540a38b74e6bca3)] +- Hash link [razvanMiu - [`eb16243`](https://github.com/eea/volto-slate/commit/eb16243eca0053ec22b39e06fa0471c2d0491079)] +- Fix crash when dealing with a null link [Tiberiu Ichim - [`423f702`](https://github.com/eea/volto-slate/commit/423f7029b25495e86fb9004e057d2460877f3447)] +### [2.1.0](https://github.com/eea/volto-slate/compare/2.0.1...2.1.0) - 8 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.1.0 [Alin Voinea - [`f2656e8`](https://github.com/eea/volto-slate/commit/f2656e87f1d4a880eaa68ea41cc609d5aea1f4e0)] +- Cleanup dependencies [Alin Voinea - [`f064aec`](https://github.com/eea/volto-slate/commit/f064aec9e4f1fad447a33f0cd87fe47f44ac8c91)] +- Add info about the plone integration package [Tiberiu Ichim - [`d993c7c`](https://github.com/eea/volto-slate/commit/d993c7c5d1b2fe1de4283ec1769b861c49619ff8)] +- Cleanup usage of internal link [Tiberiu Ichim - [`1f95aa8`](https://github.com/eea/volto-slate/commit/1f95aa83af2ee63f1bb3f2cb655d8a365a6100c1)] +- Improve link plugin [Tiberiu Ichim - [`cf36771`](https://github.com/eea/volto-slate/commit/cf36771b7045aac0464930b83d2a77cb515b40ae)] +### [2.0.1](https://github.com/eea/volto-slate/compare/2.0.0...2.0.1) - 1 March 2021 + +#### :hammer_and_wrench: Others + +- Release 2.0.1 [Tiberiu Ichim - [`7f75fa7`](https://github.com/eea/volto-slate/commit/7f75fa77f78062661fba757a4bd16959b354c393)] +- Auto release on npm [Alin Voinea - [`2b1dd57`](https://github.com/eea/volto-slate/commit/2b1dd571996cd3e2a82f1a454c68575f9d1caa18)] +## [2.0.0](https://github.com/eea/volto-slate/compare/1.2.0...2.0.0) - 25 February 2021 + +#### :hammer_and_wrench: Others + +- Release 2.0.0 [Alin Voinea - [`e058cc6`](https://github.com/eea/volto-slate/commit/e058cc64376e92a2430ec6c4fb00bffcd2c24976)] +- Update dependency volto-object-widget to ^2.0.0 [Alin Voinea - [`d7b7126`](https://github.com/eea/volto-slate/commit/d7b71269448cee15bcf3f2f905d6a594826d25f2)] +- Lower coverage threshold [Alin Voinea - [`3f17c87`](https://github.com/eea/volto-slate/commit/3f17c875f645ba7b318908bfc5b5ed20121649d3)] +- Fix .eslintrc [Alin Voinea - [`f4de03c`](https://github.com/eea/volto-slate/commit/f4de03c82acdd7a7dcd4ad88145dd355cd47c4b0)] +- Upgrade Jenkins pipeline to use plone/volto-addon-ci docker image [Alin Voinea - [`07cc8e8`](https://github.com/eea/volto-slate/commit/07cc8e8d767dbe00436882bc7f521a74049b43d9)] +- Upgrade tests ~/config to @/plone/volto/registry [Alin Voinea - [`5077dcb`](https://github.com/eea/volto-slate/commit/5077dcb0eb1353a9bad1e717c4ea32063e9277e0)] +- More makefile [Tiberiu Ichim - [`9a22edc`](https://github.com/eea/volto-slate/commit/9a22edcd81b4365c56ad93d1c8c6fe3366de03c7)] +- Fix makefile [Tiberiu Ichim - [`5ac16cb`](https://github.com/eea/volto-slate/commit/5ac16cb7524df33997556e20bb9a378f1aba156c)] +- Add makefile to bootstrap addon [Tiberiu Ichim - [`1cc6ade`](https://github.com/eea/volto-slate/commit/1cc6adefa49e3c07877f7f41b3135bffbc2f3a15)] +- Add custom eslint configuration [Tiberiu Ichim - [`8871bfd`](https://github.com/eea/volto-slate/commit/8871bfd6faff0f4af4440104062d3a73dfbc6a71)] +- Remove unneeded package [Tiberiu Ichim - [`d8cd82c`](https://github.com/eea/volto-slate/commit/d8cd82cd3195e36bf90f2e47131f94dff79d6bb9)] +- Update for Volto 12 compatibility [Tiberiu Ichim - [`9594d78`](https://github.com/eea/volto-slate/commit/9594d78b2cace48a9eb0c1cfd142e8c3dcb0eb99)] +- Remove bootstrap script [Tiberiu Ichim - [`e01a8fd`](https://github.com/eea/volto-slate/commit/e01a8fdaf43ef08af9bf078dd0326d75834647c3)] +- Update CHANGELOG.md [ichim-david - [`3b13c9e`](https://github.com/eea/volto-slate/commit/3b13c9e34e021f157e61b318dc849a76ea67f85a)] +### [1.2.0](https://github.com/eea/volto-slate/compare/1.1.1...1.2.0) - 19 February 2021 + +#### :hammer_and_wrench: Others + +- Release 1.2.0 [David Ichim - [`1aaac34`](https://github.com/eea/volto-slate/commit/1aaac34a06f28a47f888f18df53cb41284c49301)] +- Use commit limit for this release [David Ichim - [`3c70f8d`](https://github.com/eea/volto-slate/commit/3c70f8d80493428e326096eaa3c1d493394896b4)] +- Use commit limit for this release [David Ichim - [`018cf96`](https://github.com/eea/volto-slate/commit/018cf962fe9d2ce541459906fc2e2224fbd19524)] +- Use a static changelog for this release [David Ichim - [`244386a`](https://github.com/eea/volto-slate/commit/244386a3e64823cef0cf082141a11652973607be)] +- Refs #126375 set within asDefault profile the Table and Text naming: [David Ichim - [`4f56d4b`](https://github.com/eea/volto-slate/commit/4f56d4ba80f6522fbee858d22f3564b36dab787d)] +- Refs #126375 revert also test upgrade [David Ichim - [`f925217`](https://github.com/eea/volto-slate/commit/f92521724a20b47b5757f271122ffc4d4f3ff0cc)] +- Refs #126375 revert devDependencies upgrade since the tests fail [David Ichim - [`6825545`](https://github.com/eea/volto-slate/commit/68255457071f8a7bc47e12a85093d21d41f83db2)] +- Refs #126375 attempt to fix tests after testing upgrade: [David Ichim - [`d189d77`](https://github.com/eea/volto-slate/commit/d189d77c551fc94e32eee03bc45661e8b000ba67)] +- Refs #126375 modified waitFor test [David Ichim - [`6cff18a`](https://github.com/eea/volto-slate/commit/6cff18ac5b416d8a6162d373ed6d5e7f076827a9)] +- Refs #126375 use waitFor as wait is deprecated and updated devDependencies for volto-slate [David Ichim - [`8dbb012`](https://github.com/eea/volto-slate/commit/8dbb012c1a5b48941fe7aef06c8e1d6e647bf158)] +- Refs #126375 cypress test should look For Text not Slate anymore [David Ichim - [`e249337`](https://github.com/eea/volto-slate/commit/e2493378aab6f6a452bb279055f07266ed32500b)] +- Refs #126375 prettier fixes for text index.js [David Ichim - [`9d4d7cd`](https://github.com/eea/volto-slate/commit/9d4d7cd7bf242ab9d3f97a593ff4065b530956ff)] +- Refs #126375 prettier fixes [David Ichim - [`e21f81c`](https://github.com/eea/volto-slate/commit/e21f81c14409e13f5d4a3cc8c1d9f79fe4ff1669)] +- #126375 renamed Slate -> Text, Slate Table -> Table [David Ichim - [`24721c2`](https://github.com/eea/volto-slate/commit/24721c2721d47e434ca97bff62bce0bd1971d782)] +### [1.1.1](https://github.com/eea/volto-slate/compare/1.1.0...1.1.1) - 8 February 2021 + +#### :hammer_and_wrench: Others + +- Release 1.1.1 [Alin Voinea - [`a6b75c1`](https://github.com/eea/volto-slate/commit/a6b75c127b2cb112ec480c78eac9e6b6aba269d7)] +### [1.1.0](https://github.com/eea/volto-slate/compare/1.0.7...1.1.0) - 26 January 2021 + +#### :hammer_and_wrench: Others + +- Release 1.1.0 [Alin Voinea - [`3d5344c`](https://github.com/eea/volto-slate/commit/3d5344c8a3f6ccf4b8d2ff4ee70efed97414bd90)] +- render external link starting with '/' with Link component of react-router-dom [Katja Süss - [`21619de`](https://github.com/eea/volto-slate/commit/21619de697d4f184421d6d7e025c54a3571dff8a)] +- Revert "render external link that starts with / with Link component of react-router-dom" [Katja Süss - [`cd47e39`](https://github.com/eea/volto-slate/commit/cd47e39db2dc5491be22d5b8864b71d59bc9d5e1)] +- render external link that starts with / with Link component of react-router-dom [Katja Süss - [`b73aa64`](https://github.com/eea/volto-slate/commit/b73aa6457f0f3933118334d48299268054f95d1d)] +### [1.0.7](https://github.com/eea/volto-slate/compare/1.0.6...1.0.7) - 28 December 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.7 [Alin Voinea - [`e0daac9`](https://github.com/eea/volto-slate/commit/e0daac96b5fad0427c2ca8b6111c8d6a24b2829a)] +### [1.0.6](https://github.com/eea/volto-slate/compare/1.0.5...1.0.6) - 16 December 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.6 [Alin Voinea - [`1a22eae`](https://github.com/eea/volto-slate/commit/1a22eae5f7d488b0a04f414940a6459a10a9920f)] +- Update docs with missing dependencies [Alin Voinea - [`33cd98a`](https://github.com/eea/volto-slate/commit/33cd98ae9f2682a468fbc0ca9fdaa465050c1e24)] +### [1.0.5](https://github.com/eea/volto-slate/compare/1.0.4...1.0.5) - 14 December 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.5 [Alin Voinea - [`8ca68d4`](https://github.com/eea/volto-slate/commit/8ca68d4582860d951b4200dc22a8e35858cd6591)] +- add sonar exclusions [valentinab25 - [`e28b1f1`](https://github.com/eea/volto-slate/commit/e28b1f11f674f01203c23065a55e6f06e6a80438)] +- Remove useless dependencies, pass unit tests [Silviu Bogan - [`2734907`](https://github.com/eea/volto-slate/commit/27349074d6301898ded29cbd4a5a64d55f8fcb49)] +- update jenkinsfile to develop [valentinab25 - [`52b1721`](https://github.com/eea/volto-slate/commit/52b17213e3515b7f8b22f0998ba8cb22f03a64e9)] +- add exclusions [valentinab25 - [`3b71705`](https://github.com/eea/volto-slate/commit/3b717053271f7f7d853272c0c249d9b2de177417)] +- Attempt to solve unit test errors [Silviu Bogan - [`b363ad1`](https://github.com/eea/volto-slate/commit/b363ad10d528e50af9f110322684b69116e8e7aa)] +- Solve ~2 bugs, introduce 2 editor properties [Silviu Bogan - [`f33b04a`](https://github.com/eea/volto-slate/commit/f33b04ac9d8643fbf31de18d7e56c2cc6e784e3a)] +- If HTML is available, don't paste image but HTML [Silviu Bogan - [`54a359e`](https://github.com/eea/volto-slate/commit/54a359e42cb7d3711fed3faca4252de795b91b79)] +- Upgrade dependencies including jest for CI [Silviu Bogan - [`99c5ebe`](https://github.com/eea/volto-slate/commit/99c5ebe3211c3a4e3b0cb5cc5177636cfea304d3)] +- deprecate wait [valentinab25 - [`9782f1b`](https://github.com/eea/volto-slate/commit/9782f1bf80b112def768f333c91cdc993d533dd8)] +- deprecated wait [valentinab25 - [`712df48`](https://github.com/eea/volto-slate/commit/712df488f85f6399bc52bad76be2ecc0dddf451a)] +- Tables pasted from G Sheets work better [Silviu Bogan - [`7dca99e`](https://github.com/eea/volto-slate/commit/7dca99e24e0b70f13c217498ec943d3c4c50bca6)] +- Works now: Paste tables from Google Sheets into volto-slate [Silviu Bogan - [`a3beb99`](https://github.com/eea/volto-slate/commit/a3beb995655c05cd12530a4ca38633fe02ba3726)] +- Tweak gitignore [Tiberiu Ichim - [`24b96fb`](https://github.com/eea/volto-slate/commit/24b96fb66089f8a038eaef8cf9bc0b15b7c06411)] +- Update README.md [Tiberiu Ichim - [`d1fbb4d`](https://github.com/eea/volto-slate/commit/d1fbb4d6bccf7ba2ae6ba4564534f1c3696548e9)] +### [1.0.4](https://github.com/eea/volto-slate/compare/1.0.3...1.0.4) - 2 December 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.4 [Alin Voinea - [`699c824`](https://github.com/eea/volto-slate/commit/699c82421dc48b1d45b8f88e5a2dff3013efa525)] +- Fix dependencies versions [Alin Voinea - [`e6bad78`](https://github.com/eea/volto-slate/commit/e6bad78f77b2ad9f4380017439efaaf533f05d5d)] +### [1.0.3](https://github.com/eea/volto-slate/compare/1.0.2...1.0.3) - 2 December 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.3 [Alin Voinea - [`a620fd1`](https://github.com/eea/volto-slate/commit/a620fd1391150995005b057716f60222883a04ae)] +- Update dev docs [Alin Voinea - [`496f838`](https://github.com/eea/volto-slate/commit/496f8388a3150e2b9e7e93f0e7b9e40e1955ac87)] +### [1.0.2](https://github.com/eea/volto-slate/compare/1.0.1...1.0.2) - 27 November 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.2 [Alin Voinea - [`26cb765`](https://github.com/eea/volto-slate/commit/26cb7659719d19f48730fab7ea94a5080426f9a9)] +- Publish release on npm [Alin Voinea - [`ae664ce`](https://github.com/eea/volto-slate/commit/ae664ced4c9eca06443eedd21ec8fcbfec007f97)] +- add more blockProps to RichTextWidget [nileshgulia1 - [`e072ba1`](https://github.com/eea/volto-slate/commit/e072ba13a23d4ded449fae1666cc66fe035b8764)] +### [1.0.1](https://github.com/eea/volto-slate/compare/1.0.0...1.0.1) - 22 November 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.1 [Tiberiu Ichim - [`5ba1695`](https://github.com/eea/volto-slate/commit/5ba1695ad7cf51ab318fbd9c4e9c8f24b30fb58d)] +- Add dependency on @eeacms/volto-object-widget [Tiberiu Ichim - [`0b6b7f4`](https://github.com/eea/volto-slate/commit/0b6b7f4a9ea459517cf0f31a6ceb4acf0aea4f93)] +## [1.0.0](https://github.com/eea/volto-slate/compare/0.9.3...1.0.0) - 16 November 2020 + +#### :hammer_and_wrench: Others + +- Release 1.0.0 [Alin Voinea - [`25b5b96`](https://github.com/eea/volto-slate/commit/25b5b96442c04cb468e82c3556e73bdc07533d05)] +- Fix screen gif links [Alin Voinea - [`65d8a7c`](https://github.com/eea/volto-slate/commit/65d8a7c7e85ac92e73312e178ebc2fe571a7df1c)] +- Fix documentation [Alin Voinea - [`a5080dd`](https://github.com/eea/volto-slate/commit/a5080ddd8564b71b4cc11a1d2b67e866b15e0f31)] +- Update features and screen recordings in README.md [Silviu Bogan - [`ec55905`](https://github.com/eea/volto-slate/commit/ec5590515bdbaee9bf3d37a0f4b328ac8fbb8be1)] +- try without exclusions [valentinab25 - [`de19839`](https://github.com/eea/volto-slate/commit/de1983999938db998129cf3b1de5bed9e0f0739b)] +- try different exclusion [valentinab25 - [`a38b112`](https://github.com/eea/volto-slate/commit/a38b11232880b8359c0eda652dc501d3da74789c)] +- exclude tests jsx [valentinab25 - [`a2f98c0`](https://github.com/eea/volto-slate/commit/a2f98c04238e2ad6d9c4d73bd59ed34790c74960)] +- Rename unit test files from .jsx to .js [Silviu Bogan - [`a4062fb`](https://github.com/eea/volto-slate/commit/a4062fb65aa6cd13d1a5b52c80a7303e88c85bb4)] +- All existing unit test are passed [Silviu Bogan - [`c471134`](https://github.com/eea/volto-slate/commit/c471134ff05ab6a4931256049dbf269302e68d65)] +- Update docs [Alin Voinea - [`1b737a6`](https://github.com/eea/volto-slate/commit/1b737a6fcde692eaccf4490fcf6defc137984fa1)] +- Pass another unit test that previously was failed [Silviu Bogan - [`f395aa5`](https://github.com/eea/volto-slate/commit/f395aa53a9f5bbe2a605966bd9e027ecccab38a2)] +- Pass unit test that previously was failed [Silviu Bogan - [`7dd38f8`](https://github.com/eea/volto-slate/commit/7dd38f8e687a977af00ddff1cffe91972c9d9a78)] +- Correct an unit test [Silviu Bogan - [`60d340a`](https://github.com/eea/volto-slate/commit/60d340a841400b93da41a9eb45753e29192c7ba3)] +- Small change for debugging [Silviu Bogan - [`60c2718`](https://github.com/eea/volto-slate/commit/60c27181a4693b1e0aa7d8fcabb6105f58815243)] +- update pipeline to volto-widgets-view pipeline [valentinab25 - [`117e250`](https://github.com/eea/volto-slate/commit/117e25014510c7a1e6f923a7137866db178f60ad)] +- Added eslint-disable comment to a file [Silviu Bogan - [`2528062`](https://github.com/eea/volto-slate/commit/25280620b8c3c047dbc9070417e4a383d187f854)] +- Added a console.log for debugging [Silviu Bogan - [`fe65b90`](https://github.com/eea/volto-slate/commit/fe65b9012d6879cbb41cf4573e585f15065ea08a)] +- Update README.md [Tiberiu Ichim - [`54a4a90`](https://github.com/eea/volto-slate/commit/54a4a9021c559a5d712cf1cc7f6db29a4908c5a1)] +- Update README.md [Tiberiu Ichim - [`d93ca07`](https://github.com/eea/volto-slate/commit/d93ca0709173cd03e0539cd51de0df3720bbeefc)] +- Repair code style errors in the previous commit [Silviu Bogan - [`05e1f09`](https://github.com/eea/volto-slate/commit/05e1f09e59ce0a5c907dc31fb20351e689d8aa11)] +- Attempt to make Table/View.test.jsx functional [Silviu Bogan - [`bdb562d`](https://github.com/eea/volto-slate/commit/bdb562d9efeedbe6242bd5200f2574fd20a5170d)] +### [0.9.3](https://github.com/eea/volto-slate/compare/0.9.2...0.9.3) - 9 November 2020 + +#### :hammer_and_wrench: Others + +- Release 0.9.3 [Alin Voinea - [`fcdd0ff`](https://github.com/eea/volto-slate/commit/fcdd0ffdf7ae5647001532d21384f8895ed85e34)] +- CHANGELOG.md [Alin Voinea - [`6c1a007`](https://github.com/eea/volto-slate/commit/6c1a0076ec9ce1907eeabaf670318d320ebf4df4)] +### [0.9.2](https://github.com/eea/volto-slate/compare/0.9.1...0.9.2) - 2 November 2020 + +#### :hammer_and_wrench: Others + +- Release 0.9.2 [Alin Voinea - [`d81f7bc`](https://github.com/eea/volto-slate/commit/d81f7bc078d9d9ed0c3b32198406a54237af2e32)] +- Cleanup deprecated CHANGELOG [Alin Voinea - [`d59ce34`](https://github.com/eea/volto-slate/commit/d59ce34cd158913faa84e834ead692f80799aed1)] +- Fix release-it config [Alin Voinea - [`70f468a`](https://github.com/eea/volto-slate/commit/70f468a03876ef9b9127f25ee2906cacf1d758dc)] +### [0.9.1](https://github.com/eea/volto-slate/compare/0.9.0...0.9.1) - 30 October 2020 + +#### :hammer_and_wrench: Others + +- Remove package-lock.json [Tiberiu Ichim - [`ebdcd9f`](https://github.com/eea/volto-slate/commit/ebdcd9f7bdd38e4a4ea3d8ffcc28804da78262c7)] +- Implement variable with format aliases [Silviu Bogan - [`590137f`](https://github.com/eea/volto-slate/commit/590137fdacb8b4ef1153d8eb9a96dc0fde313c49)] +- Toolbar buttons and hotkeys work [Silviu Bogan - [`a6f2691`](https://github.com/eea/volto-slate/commit/a6f2691f136912c1b04653e1ab99557452a85dcb)] +- Don't show hovering toolbar when there's just saved, not live, selection [Silviu Bogan - [`597e954`](https://github.com/eea/volto-slate/commit/597e9543b7fd4a12358b2f37844ad81fa946c76c)] +- Omit also path from rendering in elements [Tiberiu Ichim - [`8facd99`](https://github.com/eea/volto-slate/commit/8facd996dfdb916ada14ad66a1e7e9e961da22f8)] +- Remove obsolete comment [Tiberiu Ichim - [`6e07016`](https://github.com/eea/volto-slate/commit/6e0701612c883edfa722c3f2ff2262e77fc57632)] +- Fix rendering of table blocks [Tiberiu Ichim - [`77a0768`](https://github.com/eea/volto-slate/commit/77a07687eac9283aa44b9961d2f4d619b4f922cc)] +- Defensive code [Tiberiu Ichim - [`d48c360`](https://github.com/eea/volto-slate/commit/d48c360f6e590f0a85b1f74b3f8466a1430384ea)] +- Add changelog [Tiberiu Ichim - [`237fdfd`](https://github.com/eea/volto-slate/commit/237fdfd4da27eb389b1a6add4869d032a5565ab2)] +- Optimize output of serializer [Tiberiu Ichim - [`c907405`](https://github.com/eea/volto-slate/commit/c90740501b3fa34098e9a92d22e1a632acf6a6c5)] +- Avoid editor prop from being rendered by elements [Tiberiu Ichim - [`9b6f2ef`](https://github.com/eea/volto-slate/commit/9b6f2ef56c1c18eaa32d4ed37bb5acb9ce6ad02f)] +- Also set saved selection on slate editor update [Tiberiu Ichim - [`bed2bda`](https://github.com/eea/volto-slate/commit/bed2bda4dbb5c3c1b8f6640c32fb0c02952d8e52)] +- Solve a browser console warning [Silviu Bogan - [`c3c339f`](https://github.com/eea/volto-slate/commit/c3c339f7fdaa29073e32e7f7c6d536d098b78449)] +- Fix handling of selection in insertElement [Tiberiu Ichim - [`f3ea46a`](https://github.com/eea/volto-slate/commit/f3ea46a14766b5a90d278a55139bd1575486ef5d)] +- Add style to the richtext widget [Tiberiu Ichim - [`ed7b35b`](https://github.com/eea/volto-slate/commit/ed7b35bc3e1a91b4c88dc498a560313048fb11ca)] +- Remove warning [Tiberiu Ichim - [`fe8fbc3`](https://github.com/eea/volto-slate/commit/fe8fbc3bddc44971df96fcf57a237561b2e3ae42)] +- Add comments [Tiberiu Ichim - [`87a7264`](https://github.com/eea/volto-slate/commit/87a726407f343bc9694e73cc0f0d5dffc922cc83)] +- Make home/end keys work [Tiberiu Ichim - [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985)] +- Make readOnly really work [Tiberiu Ichim - [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37)] +- Correct mistake: removed readOnly prop from SlateEditor [Silviu Bogan - [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8)] +- yarn workspace volto-slate add react-visibility-sensor [Alin Voinea - [`dc02e5f`](https://github.com/eea/volto-slate/commit/dc02e5f0954030bfb1a4b610feb15484bce49c6e)] +- Add missing dependency react-visibility-sensor [Alin Voinea - [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b)] +- Reintroduce Dropzone and use it correctly [Silviu Bogan - [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62)] +- Switch back read-only mode to true if another block is selected [kreafox - [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029)] +- Use visibility sensor for SlateEditor [kreafox - [`a830fcf`](https://github.com/eea/volto-slate/commit/a830fcf8c293874fd6f39fa9a6ab904067cc010d)] +- Adjust changelog [Tiberiu Ichim - [`94dbfe7`](https://github.com/eea/volto-slate/commit/94dbfe7447661ab9c546a97bfb3ef0d2b8085761)] +- Temporarily remove dropzone from text editor [Tiberiu Ichim - [`9b2910d`](https://github.com/eea/volto-slate/commit/9b2910d4c69f557fc880d066a7ed67f31d7cc2d6)] +- Comment out the shortcut for format 'code' [Silviu Bogan - [`4150826`](https://github.com/eea/volto-slate/commit/41508265396a1678e40eaba8cea9e43ab6f95b7c)] +- Basic keyboard shortcuts work, UI string changes [Silviu Bogan - [`fe87a47`](https://github.com/eea/volto-slate/commit/fe87a47031807509ee3651535fb8d2e3a91813c1)] +- Code cleanup [Tiberiu Ichim - [`99820b8`](https://github.com/eea/volto-slate/commit/99820b8ccb985c56a1afa04ce466f08260f2008b)] +- Add support for native integration of block styles [Tiberiu Ichim - [`095fcea`](https://github.com/eea/volto-slate/commit/095fcea6b4db1adaccfa2dd0b9acf77fc4be5ddb)] +- Fix toc entry [Tiberiu Ichim - [`f261dc9`](https://github.com/eea/volto-slate/commit/f261dc9a6f27a02088d0d73d4ac86551971f4149)] +- Pass level as int [Tiberiu Ichim - [`6942c88`](https://github.com/eea/volto-slate/commit/6942c888efb043d59b619edd48371ec84affb5b2)] +- Integrate with volto-block-toc [Tiberiu Ichim - [`96993a9`](https://github.com/eea/volto-slate/commit/96993a9674aef21aa0a3699dbddb90415279f690)] +- It's easier to open the styles menu [Silviu Bogan - [`e6accdc`](https://github.com/eea/volto-slate/commit/e6accdc38ff1d6165527d85bababf18a938dd1e1)] +- Moved all utilities of StyleMenu into StyleMenu directory [Silviu Bogan - [`cbb0779`](https://github.com/eea/volto-slate/commit/cbb07790a52853d5b161081e14b204ecb521c10e)] +- Add changelog [Tiberiu Ichim - [`a713a78`](https://github.com/eea/volto-slate/commit/a713a78232b6c6a62c18c20dacc22602b68f418b)] +- Add toc entry settings in text block [Tiberiu Ichim - [`d938391`](https://github.com/eea/volto-slate/commit/d938391670429d62306b38099d11845afa258f85)] +- Improve paste handling when dealing with images [Tiberiu Ichim - [`27b5c81`](https://github.com/eea/volto-slate/commit/27b5c81c8515e662ccc4b9076c6480c0c2f8f4ca)] +- Extract toggleStyle into utils/blocks.js [Silviu Bogan - [`ebd919f`](https://github.com/eea/volto-slate/commit/ebd919f336ed91545ebeb5cad303f1e394f93937)] +- Improve paste handling, also handle plain text [Tiberiu Ichim - [`4cc2b54`](https://github.com/eea/volto-slate/commit/4cc2b54a685d90eb74eaef74f3217948d8e87893)] +### [0.9.0](https://github.com/eea/volto-slate/compare/0.9.0-beta.5...0.9.0) - 7 October 2020 + +### [0.9.0-beta.5](https://github.com/eea/volto-slate/compare/0.9.0-beta.4...0.9.0-beta.5) - 22 October 2020 + +#### :hammer_and_wrench: Others + +- Don't show hovering toolbar when there's just saved, not live, selection [Silviu Bogan - [`597e954`](https://github.com/eea/volto-slate/commit/597e9543b7fd4a12358b2f37844ad81fa946c76c)] +- Omit also path from rendering in elements [Tiberiu Ichim - [`8facd99`](https://github.com/eea/volto-slate/commit/8facd996dfdb916ada14ad66a1e7e9e961da22f8)] +- Remove obsolete comment [Tiberiu Ichim - [`6e07016`](https://github.com/eea/volto-slate/commit/6e0701612c883edfa722c3f2ff2262e77fc57632)] +- Fix rendering of table blocks [Tiberiu Ichim - [`77a0768`](https://github.com/eea/volto-slate/commit/77a07687eac9283aa44b9961d2f4d619b4f922cc)] +- Defensive code [Tiberiu Ichim - [`d48c360`](https://github.com/eea/volto-slate/commit/d48c360f6e590f0a85b1f74b3f8466a1430384ea)] +### [0.9.0-beta.4](https://github.com/eea/volto-slate/compare/0.9.0-beta.3...0.9.0-beta.4) - 19 October 2020 + +#### :hammer_and_wrench: Others + +- Add changelog [Tiberiu Ichim - [`237fdfd`](https://github.com/eea/volto-slate/commit/237fdfd4da27eb389b1a6add4869d032a5565ab2)] +- Optimize output of serializer [Tiberiu Ichim - [`c907405`](https://github.com/eea/volto-slate/commit/c90740501b3fa34098e9a92d22e1a632acf6a6c5)] +### [0.9.0-beta.3](https://github.com/eea/volto-slate/compare/0.9.0-beta.2...0.9.0-beta.3) - 18 October 2020 + +#### :hammer_and_wrench: Others + +- Avoid editor prop from being rendered by elements [Tiberiu Ichim - [`9b6f2ef`](https://github.com/eea/volto-slate/commit/9b6f2ef56c1c18eaa32d4ed37bb5acb9ce6ad02f)] +- Also set saved selection on slate editor update [Tiberiu Ichim - [`bed2bda`](https://github.com/eea/volto-slate/commit/bed2bda4dbb5c3c1b8f6640c32fb0c02952d8e52)] +- Solve a browser console warning [Silviu Bogan - [`c3c339f`](https://github.com/eea/volto-slate/commit/c3c339f7fdaa29073e32e7f7c6d536d098b78449)] +- Fix handling of selection in insertElement [Tiberiu Ichim - [`f3ea46a`](https://github.com/eea/volto-slate/commit/f3ea46a14766b5a90d278a55139bd1575486ef5d)] +- Add style to the richtext widget [Tiberiu Ichim - [`ed7b35b`](https://github.com/eea/volto-slate/commit/ed7b35bc3e1a91b4c88dc498a560313048fb11ca)] +### [0.9.0-beta.2](https://github.com/eea/volto-slate/compare/0.9.0-beta.1...0.9.0-beta.2) - 14 October 2020 + +#### :hammer_and_wrench: Others + +- Remove warning [Tiberiu Ichim - [`fe8fbc3`](https://github.com/eea/volto-slate/commit/fe8fbc3bddc44971df96fcf57a237561b2e3ae42)] +- Add comments [Tiberiu Ichim - [`87a7264`](https://github.com/eea/volto-slate/commit/87a726407f343bc9694e73cc0f0d5dffc922cc83)] +- Make home/end keys work [Tiberiu Ichim - [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985)] +- Make readOnly really work [Tiberiu Ichim - [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37)] +- Correct mistake: removed readOnly prop from SlateEditor [Silviu Bogan - [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8)] +- yarn workspace volto-slate add react-visibility-sensor [Alin Voinea - [`dc02e5f`](https://github.com/eea/volto-slate/commit/dc02e5f0954030bfb1a4b610feb15484bce49c6e)] +- Add missing dependency react-visibility-sensor [Alin Voinea - [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b)] +- Reintroduce Dropzone and use it correctly [Silviu Bogan - [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62)] +- Switch back read-only mode to true if another block is selected [kreafox - [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029)] +- Use visibility sensor for SlateEditor [kreafox - [`a830fcf`](https://github.com/eea/volto-slate/commit/a830fcf8c293874fd6f39fa9a6ab904067cc010d)] +### [0.9.0-beta.1](https://github.com/eea/volto-slate/compare/0.8.2...0.9.0-beta.1) - 12 October 2020 + +#### :hammer_and_wrench: Others + +- Adjust changelog [Tiberiu Ichim - [`94dbfe7`](https://github.com/eea/volto-slate/commit/94dbfe7447661ab9c546a97bfb3ef0d2b8085761)] +- Temporarily remove dropzone from text editor [Tiberiu Ichim - [`9b2910d`](https://github.com/eea/volto-slate/commit/9b2910d4c69f557fc880d066a7ed67f31d7cc2d6)] +- Comment out the shortcut for format 'code' [Silviu Bogan - [`4150826`](https://github.com/eea/volto-slate/commit/41508265396a1678e40eaba8cea9e43ab6f95b7c)] +- Basic keyboard shortcuts work, UI string changes [Silviu Bogan - [`fe87a47`](https://github.com/eea/volto-slate/commit/fe87a47031807509ee3651535fb8d2e3a91813c1)] +- Code cleanup [Tiberiu Ichim - [`99820b8`](https://github.com/eea/volto-slate/commit/99820b8ccb985c56a1afa04ce466f08260f2008b)] +- Add support for native integration of block styles [Tiberiu Ichim - [`095fcea`](https://github.com/eea/volto-slate/commit/095fcea6b4db1adaccfa2dd0b9acf77fc4be5ddb)] +- Fix toc entry [Tiberiu Ichim - [`f261dc9`](https://github.com/eea/volto-slate/commit/f261dc9a6f27a02088d0d73d4ac86551971f4149)] +- Pass level as int [Tiberiu Ichim - [`6942c88`](https://github.com/eea/volto-slate/commit/6942c888efb043d59b619edd48371ec84affb5b2)] +- Integrate with volto-block-toc [Tiberiu Ichim - [`96993a9`](https://github.com/eea/volto-slate/commit/96993a9674aef21aa0a3699dbddb90415279f690)] +- It's easier to open the styles menu [Silviu Bogan - [`e6accdc`](https://github.com/eea/volto-slate/commit/e6accdc38ff1d6165527d85bababf18a938dd1e1)] +- Moved all utilities of StyleMenu into StyleMenu directory [Silviu Bogan - [`cbb0779`](https://github.com/eea/volto-slate/commit/cbb07790a52853d5b161081e14b204ecb521c10e)] +- Add changelog [Tiberiu Ichim - [`a713a78`](https://github.com/eea/volto-slate/commit/a713a78232b6c6a62c18c20dacc22602b68f418b)] +- Add toc entry settings in text block [Tiberiu Ichim - [`d938391`](https://github.com/eea/volto-slate/commit/d938391670429d62306b38099d11845afa258f85)] +- Improve paste handling when dealing with images [Tiberiu Ichim - [`27b5c81`](https://github.com/eea/volto-slate/commit/27b5c81c8515e662ccc4b9076c6480c0c2f8f4ca)] +- Extract toggleStyle into utils/blocks.js [Silviu Bogan - [`ebd919f`](https://github.com/eea/volto-slate/commit/ebd919f336ed91545ebeb5cad303f1e394f93937)] +- Improve paste handling, also handle plain text [Tiberiu Ichim - [`4cc2b54`](https://github.com/eea/volto-slate/commit/4cc2b54a685d90eb74eaef74f3217948d8e87893)] +### [0.8.2](https://github.com/eea/volto-slate/compare/0.8.1...0.8.2) - 7 October 2020 + +#### :hammer_and_wrench: Others + +- Improve paste handling [Tiberiu Ichim - [`fb915f7`](https://github.com/eea/volto-slate/commit/fb915f7e51f73a451866c781ab56b8ef995fabf3)] +- Improve paste handling [Tiberiu Ichim - [`e4421ee`](https://github.com/eea/volto-slate/commit/e4421eea1a984ec4a3e7bb825776b42cff10155c)] +- Improve paste handling [Tiberiu Ichim - [`9c097e7`](https://github.com/eea/volto-slate/commit/9c097e772eb32bcc0deec846879fc702e165da0e)] +- Code cleanup [Tiberiu Ichim - [`e42240a`](https://github.com/eea/volto-slate/commit/e42240a5cd4267d2ad69677897cfdf4653385084)] +- Improve paste handling [Tiberiu Ichim - [`156d17c`](https://github.com/eea/volto-slate/commit/156d17c0c6edc080e21f9c2a518a924db266c5b7)] +- Simplify a bit the select flushing [Tiberiu Ichim - [`54ca049`](https://github.com/eea/volto-slate/commit/54ca049dacb4e409bf90e89c2e51047970b5b925)] +- Solve: fixed (expanded) toolbar not showing [Silviu Bogan - [`62debcf`](https://github.com/eea/volto-slate/commit/62debcf57affb84d18a2d4f4359a81b69b563887)] +- Use default target string '_self' in schema [Silviu Bogan - [`0f0086c`](https://github.com/eea/volto-slate/commit/0f0086cbe32f45267e238a8492bd4128aa62f9ce)] +- Default target string is '_self' [Silviu Bogan - [`7ea908a`](https://github.com/eea/volto-slate/commit/7ea908a29c6299c30a4200b4ff455df29f3e2815)] +- Return null from deserializeImageTag sometimes [Silviu Bogan - [`313a0ea`](https://github.com/eea/volto-slate/commit/313a0ea4df230c7cdead46a6914357d6f2ec489c)] +- Solve: Enter press in title not focusing new block [Silviu Bogan - [`ef14eab`](https://github.com/eea/volto-slate/commit/ef14eabc0394c9cb1f5b25de78f70df99b6d0d53)] +- Disable paste of local images in HTML context [Silviu Bogan - [`c6a70e3`](https://github.com/eea/volto-slate/commit/c6a70e31ab3388baea724df9cfd0a4eb84bee1ca)] +- Do not let the user paste links that target iframes [Silviu Bogan - [`ac7bb68`](https://github.com/eea/volto-slate/commit/ac7bb6866113a63c5ec280bbe30784488d43369f)] +- Move ObjectByTypeWidget to volto-object-widget [Tiberiu Ichim - [`5bd54d3`](https://github.com/eea/volto-slate/commit/5bd54d3ea150d343f9c802d35e7ddb1cc117c0f5)] +### [0.8.1](https://github.com/eea/volto-slate/compare/0.8...0.8.1) - 4 October 2020 + +#### :hammer_and_wrench: Others + +- Add CHANGELOG entries [Tiberiu Ichim - [`765d4db`](https://github.com/eea/volto-slate/commit/765d4db6fa711c4b7bc80eef67148f931a71cbaf)] +- Improve paste handling [Tiberiu Ichim - [`97d4684`](https://github.com/eea/volto-slate/commit/97d468455d6fa1fc856a630eb4ccea90b03f5862)] +- Improve paste handling [Tiberiu Ichim - [`f3c1057`](https://github.com/eea/volto-slate/commit/f3c105743ec4ad5ba2df64b294fcd4245428606e)] +- Cleanup code [Tiberiu Ichim - [`3b0cc7a`](https://github.com/eea/volto-slate/commit/3b0cc7a50a54559da756f74eabdabf4abb579073)] +- Better paste handling [Tiberiu Ichim - [`358a41d`](https://github.com/eea/volto-slate/commit/358a41d92a6c8dded22b99aba03fb1143838ab44)] +- Fix handling of new line character in paste [Tiberiu Ichim - [`714de4b`](https://github.com/eea/volto-slate/commit/714de4b6ffefd93a4817c09e626f366a1f4a64d2)] +- Fix link pasting; improve general pasting [Tiberiu Ichim - [`5eac988`](https://github.com/eea/volto-slate/commit/5eac9889c5b5f91b2cac8c62e13f0cde7108efdc)] +- Better handling of paste data coming from slate [Tiberiu Ichim - [`c2bd4fd`](https://github.com/eea/volto-slate/commit/c2bd4fd0b32501c4117f777bed5dd41860d6e7f7)] +- Replace savedSelection property with separate getSavedSelection and setSavedSelection [Tiberiu Ichim - [`a2f2d54`](https://github.com/eea/volto-slate/commit/a2f2d54d7d04a0d888d996146d57b5ea411f2fb8)] +- Ignore <br> tags in deserialization process [Silviu Bogan - [`50426a0`](https://github.com/eea/volto-slate/commit/50426a00210f7bb9ea2ab264ea74d4e8d46708ce)] +- Correctly render <br> from pasted HTML [Silviu Bogan - [`6f05392`](https://github.com/eea/volto-slate/commit/6f05392328fc43acc9384ecad5dfe8fc475dce99)] +- Solve issue: function throws exception, not returning empty NodeEntry [Silviu Bogan - [`fdbf353`](https://github.com/eea/volto-slate/commit/fdbf3532b6abd5b05c67acdbeb42d099adc14996)] +- Modularize, better Enter behaviour in inlines in lists [Silviu Bogan - [`428a373`](https://github.com/eea/volto-slate/commit/428a373bb2e3171838118560cc11606ee0acaa6b)] +- Add new line between two function definitions [Silviu Bogan - [`411eb5b`](https://github.com/eea/volto-slate/commit/411eb5be7404d80d72013c7aa557837b7135d6fa)] +- Split block on Enter when selection in inline node [Silviu Bogan - [`8f2956f`](https://github.com/eea/volto-slate/commit/8f2956fe8fe8ca3637f6b9455b3f3a2a48000fa1)] +- Pasted links have good information in their sidebar [Silviu Bogan - [`976062d`](https://github.com/eea/volto-slate/commit/976062d4e4a9691e721ad61de8043076a6890a62)] +- Allow pasting empty cells from Google Spreadsheets [Silviu Bogan - [`cabfd11`](https://github.com/eea/volto-slate/commit/cabfd1167867a4bae3f3919a18ffeec114c5d8e3)] +- Upgrade slate to 0.59 [Tiberiu Ichim - [`890ae52`](https://github.com/eea/volto-slate/commit/890ae52ad82073e30aa4f4edcd7539bfe8206b3b)] +- Toolbar button title [Alin Voinea - [`ebc6878`](https://github.com/eea/volto-slate/commit/ebc6878eaa9807e47e8877ff9bb24a0d01033832)] +- Fix: range is null [Alin Voinea - [`e19b887`](https://github.com/eea/volto-slate/commit/e19b8879f06a54346896d8eccca2eaef5ca04763)] +- Fix joinWithPreviousBlock when block index is 0 [Alin Voinea - [`04ea0a1`](https://github.com/eea/volto-slate/commit/04ea0a1940273f867dabcfb56b8a45957b3052e4)] +- Add CHANGELOG [Tiberiu Ichim - [`3a1f65d`](https://github.com/eea/volto-slate/commit/3a1f65dcb785485d933c507ec9976288d4525d2a)] +- Fix inline styling of replaced markup [Tiberiu Ichim - [`bf964b9`](https://github.com/eea/volto-slate/commit/bf964b9ee644dbf459c4d6809bc78f8b39710370)] +- Change style menu definitions format [Silviu Bogan - [`0e7277a`](https://github.com/eea/volto-slate/commit/0e7277a60b0816220638790b7400331d68607b18)] +- Cosmetics [Alin Voinea - [`2242957`](https://github.com/eea/volto-slate/commit/22429579c102b53b32d12415749e6b1675a6ecf2)] +- No default style menu definitions (case handled) [Silviu Bogan - [`48131e2`](https://github.com/eea/volto-slate/commit/48131e2c9fcae30446266283699041c5c0e7b81d)] +- Update 2 strings displayed to the end-user [Silviu Bogan - [`41a6172`](https://github.com/eea/volto-slate/commit/41a6172ade29080e46337f92a164bbb3acb38b90)] +- Fix block selection [Tiberiu Ichim - [`226d374`](https://github.com/eea/volto-slate/commit/226d3748a9929a3cf22b372b660268e48ad3c9a8)] +- Fix link rendering [Tiberiu Ichim - [`6811f6e`](https://github.com/eea/volto-slate/commit/6811f6e5a3b3a5419b9f6cf03becefd6371de8da)] +- Inherit placeholder from formTitle if exists [Alin Voinea - [`2d14fc6`](https://github.com/eea/volto-slate/commit/2d14fc6a2fff70b89853f1e39447850703f5375f)] +- Add TextBlock schema and editing instructions support [Alin Voinea - [`6b832f4`](https://github.com/eea/volto-slate/commit/6b832f43a647a324f24aa93fc0dac6577bc6c6b3)] +- Follow block data protocol, pass formData as data [Tiberiu Ichim - [`f1fc6fd`](https://github.com/eea/volto-slate/commit/f1fc6fd4dc35b26f363d68f95cb01cb2b92db8f0)] +- Pass formData to schemaProvider [Tiberiu Ichim - [`d7edce6`](https://github.com/eea/volto-slate/commit/d7edce68852423e8491b7a4c0b965eebde24d8a6)] +- Make SchemaProvider more obvious [Tiberiu Ichim - [`bf8a221`](https://github.com/eea/volto-slate/commit/bf8a2215d124018db6309c3d6ac2a5c97031e57a)] +- Add SchemaProvider component [Tiberiu Ichim - [`c936b29`](https://github.com/eea/volto-slate/commit/c936b291246cedbe33945a7c261d3153043cbf75)] +- Pass allowedBlocks to BlockChooser [Alin Voinea - [`82390bc`](https://github.com/eea/volto-slate/commit/82390bc8977d0d60e3ac9e68608da405fed04008)] +- Code formatting [Tiberiu Ichim - [`654026b`](https://github.com/eea/volto-slate/commit/654026b0512de371ecd4c4f19f7e1965d6de3c10)] +- Fix package.json [Alin Voinea - [`50dd590`](https://github.com/eea/volto-slate/commit/50dd59084599a130a855b071d45c06a95bf6948b)] +- Improved initial styles for testing [Silviu Bogan - [`34470ef`](https://github.com/eea/volto-slate/commit/34470ef5e8efc045e098caefb486fc0d027088d6)] +- Improved style [Silviu Bogan - [`4f2dab8`](https://github.com/eea/volto-slate/commit/4f2dab8a70e4a381cfcee468a21b601310bd1255)] +- Solved an issue in hasRangeSelection [Silviu Bogan - [`8299280`](https://github.com/eea/volto-slate/commit/8299280d7bcdece430a1180c655054bbe1558827)] +- Cleanup [Silviu Bogan - [`128e9f6`](https://github.com/eea/volto-slate/commit/128e9f61052995af657a5e0875ce73b81043efc7)] +- Started using the Slate marks system correctly [Silviu Bogan - [`5103226`](https://github.com/eea/volto-slate/commit/5103226af0c4489aab5d8f5fc1b2e4952850516e)] +- Improve logic and solve some issues [Silviu Bogan - [`b5dac91`](https://github.com/eea/volto-slate/commit/b5dac913720efc04fbfe94a330c8a77a01c7553f)] +- Improve logic [Silviu Bogan - [`9652c0c`](https://github.com/eea/volto-slate/commit/9652c0c4577e69c72585257a4d2c43198bdc849e)] +- Clarified example styles [Silviu Bogan - [`3d21fd1`](https://github.com/eea/volto-slate/commit/3d21fd13420b677b8492c11e491a39b9d22bcfea)] +- WIP on composing styles [Silviu Bogan - [`885eacd`](https://github.com/eea/volto-slate/commit/885eacd7f9d53c544a69f5bbf3d07ec76c4e43ff)] +- Cleanup [Silviu Bogan - [`4811e68`](https://github.com/eea/volto-slate/commit/4811e68e7e10938efcf4144edc54b92fbc17ddee)] +- Solved another issue [Silviu Bogan - [`4245ab0`](https://github.com/eea/volto-slate/commit/4245ab01fa5262c4ee9fca558b235cc7a9ba6e4a)] +- Solved 2 issues [Silviu Bogan - [`2fb86ff`](https://github.com/eea/volto-slate/commit/2fb86ffa2eccaa05c3e3d9d0ce245e88621575f4)] +- WIP - essential features work [Silviu Bogan - [`9bd95c6`](https://github.com/eea/volto-slate/commit/9bd95c64cc4fdd67e9125c52fc63e72ede1f123b)] +- Improved style + WIP on inline styles [Silviu Bogan - [`f5291d1`](https://github.com/eea/volto-slate/commit/f5291d14c4f98e13f38bdb3add2acebf0c208178)] +- Set the initial selection of the Select [Silviu Bogan - [`a28f597`](https://github.com/eea/volto-slate/commit/a28f59768fe77ad832620ecd2021b97deee7b0e9)] +- Working block style toggle [Silviu Bogan - [`b02b7a7`](https://github.com/eea/volto-slate/commit/b02b7a7355cb4680fa0e47691fb6c9b2b923de28)] +- WIP on block styles [Silviu Bogan - [`66fe907`](https://github.com/eea/volto-slate/commit/66fe9077e84b6e177ff90e888e0c61079d6176ec)] +- Improved style [Silviu Bogan - [`c89ea33`](https://github.com/eea/volto-slate/commit/c89ea33b8f1984fb6db60895f07851a288799781)] +- Improved i18n, added comments [Silviu Bogan - [`a112455`](https://github.com/eea/volto-slate/commit/a1124558d93ce6e17416be7c91fb055fa7a993ee)] +- Improved style [Silviu Bogan - [`74ce9b9`](https://github.com/eea/volto-slate/commit/74ce9b97e23c7d67d57703789732f0e0a132681f)] +- WIP - mostly work on style [Silviu Bogan - [`3cfef02`](https://github.com/eea/volto-slate/commit/3cfef0207fe2e6bdc660ca3e2e6a3608a9106bee)] +- Improved Select style and created state for it [Silviu Bogan - [`0a0266d`](https://github.com/eea/volto-slate/commit/0a0266dfbfdae9052d72581399ab8fe3b1c8a107)] +- Improved Select style [Silviu Bogan - [`64ad7f3`](https://github.com/eea/volto-slate/commit/64ad7f3e06f89393b8b2e20085ed16a3c5a3c369)] +### [0.8](https://github.com/eea/volto-slate/compare/0.7.2...0.8) - 21 September 2020 + +### [0.7.2](https://github.com/eea/volto-slate/compare/0.7.1...0.7.2) - 30 September 2020 + +#### :hammer_and_wrench: Others + +- Pasted links have good information in their sidebar [Silviu Bogan - [`976062d`](https://github.com/eea/volto-slate/commit/976062d4e4a9691e721ad61de8043076a6890a62)] +- Allow pasting empty cells from Google Spreadsheets [Silviu Bogan - [`cabfd11`](https://github.com/eea/volto-slate/commit/cabfd1167867a4bae3f3919a18ffeec114c5d8e3)] +- Upgrade slate to 0.59 [Tiberiu Ichim - [`890ae52`](https://github.com/eea/volto-slate/commit/890ae52ad82073e30aa4f4edcd7539bfe8206b3b)] +- Toolbar button title [Alin Voinea - [`ebc6878`](https://github.com/eea/volto-slate/commit/ebc6878eaa9807e47e8877ff9bb24a0d01033832)] +- Fix: range is null [Alin Voinea - [`e19b887`](https://github.com/eea/volto-slate/commit/e19b8879f06a54346896d8eccca2eaef5ca04763)] +- Fix joinWithPreviousBlock when block index is 0 [Alin Voinea - [`04ea0a1`](https://github.com/eea/volto-slate/commit/04ea0a1940273f867dabcfb56b8a45957b3052e4)] +- Add CHANGELOG [Tiberiu Ichim - [`3a1f65d`](https://github.com/eea/volto-slate/commit/3a1f65dcb785485d933c507ec9976288d4525d2a)] +- Fix inline styling of replaced markup [Tiberiu Ichim - [`bf964b9`](https://github.com/eea/volto-slate/commit/bf964b9ee644dbf459c4d6809bc78f8b39710370)] +- Change style menu definitions format [Silviu Bogan - [`0e7277a`](https://github.com/eea/volto-slate/commit/0e7277a60b0816220638790b7400331d68607b18)] +- Cosmetics [Alin Voinea - [`2242957`](https://github.com/eea/volto-slate/commit/22429579c102b53b32d12415749e6b1675a6ecf2)] +- No default style menu definitions (case handled) [Silviu Bogan - [`48131e2`](https://github.com/eea/volto-slate/commit/48131e2c9fcae30446266283699041c5c0e7b81d)] +- Update 2 strings displayed to the end-user [Silviu Bogan - [`41a6172`](https://github.com/eea/volto-slate/commit/41a6172ade29080e46337f92a164bbb3acb38b90)] +- Fix block selection [Tiberiu Ichim - [`226d374`](https://github.com/eea/volto-slate/commit/226d3748a9929a3cf22b372b660268e48ad3c9a8)] +- Fix link rendering [Tiberiu Ichim - [`6811f6e`](https://github.com/eea/volto-slate/commit/6811f6e5a3b3a5419b9f6cf03becefd6371de8da)] +- Inherit placeholder from formTitle if exists [Alin Voinea - [`2d14fc6`](https://github.com/eea/volto-slate/commit/2d14fc6a2fff70b89853f1e39447850703f5375f)] +- Add TextBlock schema and editing instructions support [Alin Voinea - [`6b832f4`](https://github.com/eea/volto-slate/commit/6b832f43a647a324f24aa93fc0dac6577bc6c6b3)] +- Follow block data protocol, pass formData as data [Tiberiu Ichim - [`f1fc6fd`](https://github.com/eea/volto-slate/commit/f1fc6fd4dc35b26f363d68f95cb01cb2b92db8f0)] +- Pass formData to schemaProvider [Tiberiu Ichim - [`d7edce6`](https://github.com/eea/volto-slate/commit/d7edce68852423e8491b7a4c0b965eebde24d8a6)] +- Make SchemaProvider more obvious [Tiberiu Ichim - [`bf8a221`](https://github.com/eea/volto-slate/commit/bf8a2215d124018db6309c3d6ac2a5c97031e57a)] +- Add SchemaProvider component [Tiberiu Ichim - [`c936b29`](https://github.com/eea/volto-slate/commit/c936b291246cedbe33945a7c261d3153043cbf75)] +- Pass allowedBlocks to BlockChooser [Alin Voinea - [`82390bc`](https://github.com/eea/volto-slate/commit/82390bc8977d0d60e3ac9e68608da405fed04008)] +- Code formatting [Tiberiu Ichim - [`654026b`](https://github.com/eea/volto-slate/commit/654026b0512de371ecd4c4f19f7e1965d6de3c10)] +- Improved initial styles for testing [Silviu Bogan - [`34470ef`](https://github.com/eea/volto-slate/commit/34470ef5e8efc045e098caefb486fc0d027088d6)] +- Improved style [Silviu Bogan - [`4f2dab8`](https://github.com/eea/volto-slate/commit/4f2dab8a70e4a381cfcee468a21b601310bd1255)] +- Solved an issue in hasRangeSelection [Silviu Bogan - [`8299280`](https://github.com/eea/volto-slate/commit/8299280d7bcdece430a1180c655054bbe1558827)] +- Cleanup [Silviu Bogan - [`128e9f6`](https://github.com/eea/volto-slate/commit/128e9f61052995af657a5e0875ce73b81043efc7)] +- Started using the Slate marks system correctly [Silviu Bogan - [`5103226`](https://github.com/eea/volto-slate/commit/5103226af0c4489aab5d8f5fc1b2e4952850516e)] +- Improve logic and solve some issues [Silviu Bogan - [`b5dac91`](https://github.com/eea/volto-slate/commit/b5dac913720efc04fbfe94a330c8a77a01c7553f)] +- Improve logic [Silviu Bogan - [`9652c0c`](https://github.com/eea/volto-slate/commit/9652c0c4577e69c72585257a4d2c43198bdc849e)] +- Clarified example styles [Silviu Bogan - [`3d21fd1`](https://github.com/eea/volto-slate/commit/3d21fd13420b677b8492c11e491a39b9d22bcfea)] +- WIP on composing styles [Silviu Bogan - [`885eacd`](https://github.com/eea/volto-slate/commit/885eacd7f9d53c544a69f5bbf3d07ec76c4e43ff)] +- Cleanup [Silviu Bogan - [`4811e68`](https://github.com/eea/volto-slate/commit/4811e68e7e10938efcf4144edc54b92fbc17ddee)] +- Solved another issue [Silviu Bogan - [`4245ab0`](https://github.com/eea/volto-slate/commit/4245ab01fa5262c4ee9fca558b235cc7a9ba6e4a)] +- Solved 2 issues [Silviu Bogan - [`2fb86ff`](https://github.com/eea/volto-slate/commit/2fb86ffa2eccaa05c3e3d9d0ce245e88621575f4)] +- WIP - essential features work [Silviu Bogan - [`9bd95c6`](https://github.com/eea/volto-slate/commit/9bd95c64cc4fdd67e9125c52fc63e72ede1f123b)] +- Improved style + WIP on inline styles [Silviu Bogan - [`f5291d1`](https://github.com/eea/volto-slate/commit/f5291d14c4f98e13f38bdb3add2acebf0c208178)] +- Set the initial selection of the Select [Silviu Bogan - [`a28f597`](https://github.com/eea/volto-slate/commit/a28f59768fe77ad832620ecd2021b97deee7b0e9)] +- Working block style toggle [Silviu Bogan - [`b02b7a7`](https://github.com/eea/volto-slate/commit/b02b7a7355cb4680fa0e47691fb6c9b2b923de28)] +- WIP on block styles [Silviu Bogan - [`66fe907`](https://github.com/eea/volto-slate/commit/66fe9077e84b6e177ff90e888e0c61079d6176ec)] +- Improved style [Silviu Bogan - [`c89ea33`](https://github.com/eea/volto-slate/commit/c89ea33b8f1984fb6db60895f07851a288799781)] +- Improved i18n, added comments [Silviu Bogan - [`a112455`](https://github.com/eea/volto-slate/commit/a1124558d93ce6e17416be7c91fb055fa7a993ee)] +- Improved style [Silviu Bogan - [`74ce9b9`](https://github.com/eea/volto-slate/commit/74ce9b97e23c7d67d57703789732f0e0a132681f)] +- WIP - mostly work on style [Silviu Bogan - [`3cfef02`](https://github.com/eea/volto-slate/commit/3cfef0207fe2e6bdc660ca3e2e6a3608a9106bee)] +- Improved Select style and created state for it [Silviu Bogan - [`0a0266d`](https://github.com/eea/volto-slate/commit/0a0266dfbfdae9052d72581399ab8fe3b1c8a107)] +- Improved Select style [Silviu Bogan - [`64ad7f3`](https://github.com/eea/volto-slate/commit/64ad7f3e06f89393b8b2e20085ed16a3c5a3c369)] +### [0.7.1](https://github.com/eea/volto-slate/compare/0.7.0...0.7.1) - 21 September 2020 + +#### :hammer_and_wrench: Others + +- Fix package.json [Alin Voinea - [`50dd590`](https://github.com/eea/volto-slate/commit/50dd59084599a130a855b071d45c06a95bf6948b)] +### [0.7.0](https://github.com/eea/volto-slate/compare/0.6.2...0.7.0) - 21 September 2020 + +#### :hammer_and_wrench: Others + +- Fix imports [Tiberiu Ichim - [`e97d13c`](https://github.com/eea/volto-slate/commit/e97d13c699b415783d41b1558b24ac5c9adf9a0f)] +- Remove debugging code [Tiberiu Ichim - [`fc593f1`](https://github.com/eea/volto-slate/commit/fc593f15b39194093623ba167b3f8da9b79c0662)] +- Fix context provider [Tiberiu Ichim - [`7eb3b01`](https://github.com/eea/volto-slate/commit/7eb3b014829c5f286f40de4b4467b8a20503c0d0)] +- Add editor context, usable by element renderer components [Tiberiu Ichim - [`471d921`](https://github.com/eea/volto-slate/commit/471d92144eaf7d1e54ab4b2a3dffed55e5660d42)] +- Don't load ObjectWidget included here [Tiberiu Ichim - [`2fa16cb`](https://github.com/eea/volto-slate/commit/2fa16cbdb9d16f75b181fe30b8749dfde25a7f96)] +- Add copy of helpers/Blocks/Blocks.js, to depend only on current Volto master [Tiberiu Ichim - [`4ed57d6`](https://github.com/eea/volto-slate/commit/4ed57d64b51e7688bc1966f53397ee24604d026a)] +- More cleanup [Tiberiu Ichim - [`7464539`](https://github.com/eea/volto-slate/commit/74645390220651d3f608b8cc7a83df552c10a141)] +- More cleanup dependence on formContext [Tiberiu Ichim - [`bd3480b`](https://github.com/eea/volto-slate/commit/bd3480b43a6b67c1f8604e9c8fea91bb75392724)] +- Rewrite joinWithPreviousBlock with new api [Tiberiu Ichim - [`29921f7`](https://github.com/eea/volto-slate/commit/29921f72672e2653fedd7050bf0b0055679e7c4e)] +- Implement join with next block with new API [Tiberiu Ichim - [`cc1ac8e`](https://github.com/eea/volto-slate/commit/cc1ac8e6d16997a15ef9885bdcc67bf38e742039)] +- Implement create slate block with unstable React api [Tiberiu Ichim - [`e3e9131`](https://github.com/eea/volto-slate/commit/e3e91313bd6ad1dbe05de57ecab8196a6fa512f6)] +- WIP on minimizing form context need [Tiberiu Ichim - [`8ad059d`](https://github.com/eea/volto-slate/commit/8ad059d1ab6e94a24456d083c50ddcd01ee57aa9)] +- Make copy/paste work [Tiberiu Ichim - [`cde9345`](https://github.com/eea/volto-slate/commit/cde93450086e530ce086c4c469653a442705fd80)] +- Serialize node data, to help with paste [Tiberiu Ichim - [`8b5ba9f`](https://github.com/eea/volto-slate/commit/8b5ba9f93d82dbd815f1a4ebc923b96d0e34c3d8)] +- Better handling of active tab [Tiberiu Ichim - [`811a27b`](https://github.com/eea/volto-slate/commit/811a27b4db5ccbc873c807eed18ffe87939aa151)] +- WIP on link plugin [Tiberiu Ichim - [`7527dcf`](https://github.com/eea/volto-slate/commit/7527dcf3e33b072d11ad1b004dfcc2633949ac23)] +- WIP on link plugin [Tiberiu Ichim - [`f71ddf3`](https://github.com/eea/volto-slate/commit/f71ddf3eb544e92a744a4057c2062deb2dc0e3f7)] +- Improve doc comment [Silviu Bogan - [`838762a`](https://github.com/eea/volto-slate/commit/838762ae420b19692da1cc54a77930cffa8d26d3)] +- Removed unused import [Silviu Bogan - [`19b1c6b`](https://github.com/eea/volto-slate/commit/19b1c6b132596708007e5c774c3f0b589eecb281)] +- Reverted wrong changes [Silviu Bogan - [`485a816`](https://github.com/eea/volto-slate/commit/485a81677831192d884c3004bc77bdb4585a11ec)] +- For volto-slate-footnote branch 'auto-footnotes-at-end-of-page' [Silviu Bogan - [`c67c7ad`](https://github.com/eea/volto-slate/commit/c67c7ad22aa85fe2bde89eba81c57289cf965430)] +### [0.6.2](https://github.com/eea/volto-slate/compare/0.6.1...0.6.2) - 16 September 2020 + +### [0.6.1](https://github.com/eea/volto-slate/compare/0.6.0...0.6.1) - 16 September 2020 + +#### :hammer_and_wrench: Others + +- Make text editor aware of layout required and disableNewBlocks settings [Alin Voinea - [`dd15d3b`](https://github.com/eea/volto-slate/commit/dd15d3b1cf5e42349e3349450ed986b91bd5463c)] +- Don't use mostUsed for block registration [Tiberiu Ichim - [`382927a`](https://github.com/eea/volto-slate/commit/382927aea2a756ea483ce741195708b870edcf8b)] +### [0.6.0](https://github.com/eea/volto-slate/compare/0.5.3...0.6.0) - 14 September 2020 + +#### :hammer_and_wrench: Others + +- Release 0.6.0 [Alin Voinea - [`11d90eb`](https://github.com/eea/volto-slate/commit/11d90eb4c317d675a4e367578ae7cd99a887af24)] +- Update footnote utils methods [Alin Voinea - [`4f52499`](https://github.com/eea/volto-slate/commit/4f524999e9b8d48e39a5b3df3fd8bfc79b9bebd4)] +- Fix default value on SelectWidget [Alin Voinea - [`fa714a4`](https://github.com/eea/volto-slate/commit/fa714a4bf6b3332a1709b903c774de0429dbce70)] +- Use toolbarButtonIcon within PluginEditor [Alin Voinea - [`a98e6c8`](https://github.com/eea/volto-slate/commit/a98e6c805798f9190878bc5bbbe25dd58339a5f7)] +- Add H4 toolbar button [kreafox - [`fb50784`](https://github.com/eea/volto-slate/commit/fb50784d78586dcfd8c0c41ea5abe3de15c996ee)] +- Remove console.log calls [Tiberiu Ichim - [`b1771a5`](https://github.com/eea/volto-slate/commit/b1771a52e37c3b80b0d46a81b88416514c1e7f0c)] +- Simplify registration of new element [Tiberiu Ichim - [`0bd4a01`](https://github.com/eea/volto-slate/commit/0bd4a01b9abadf0a1bfabed50e84fcaab2bf7b04)] +- Improve performance [Tiberiu Ichim - [`ae5fddb`](https://github.com/eea/volto-slate/commit/ae5fddbde6aa819f7aa78bc9e447f0d02ee7f6b8)] +- Removed Footnote plugin [Tiberiu Ichim - [`a62b1dd`](https://github.com/eea/volto-slate/commit/a62b1dd1c6cb8b7bb85ff98fd66da5a66fdf5a9c)] +- More fixes [Tiberiu Ichim - [`fc5cd01`](https://github.com/eea/volto-slate/commit/fc5cd01c86cfc79a885437ff9f65346f0d19c389)] +- More fixes [Tiberiu Ichim - [`e3d5902`](https://github.com/eea/volto-slate/commit/e3d590220d8143af59e104e2fe180aca14880bac)] +- Small fixes [Tiberiu Ichim - [`57618dc`](https://github.com/eea/volto-slate/commit/57618dcb71d5318f84f28e7d69013af90f90e4c0)] +- WIP, refactor a generic ElementEditor from the Footnote plugin [Tiberiu Ichim - [`7a29fc1`](https://github.com/eea/volto-slate/commit/7a29fc1d398690d7ac76c78798ca622606de73a2)] +- Code cleanup [Tiberiu Ichim - [`aa03b7a`](https://github.com/eea/volto-slate/commit/aa03b7a6551c660ca4b953165a745bb7be6ccbdc)] +- Fix footnote plugin [Tiberiu Ichim - [`8ce0730`](https://github.com/eea/volto-slate/commit/8ce0730c21fb76323fd76a856732da13070a21d4)] +- Improve handling of backward selection [Tiberiu Ichim - [`50c9e74`](https://github.com/eea/volto-slate/commit/50c9e74141f500e346903f8497add4c0d7255951)] +- cleanup [Tiberiu Ichim - [`1c55a81`](https://github.com/eea/volto-slate/commit/1c55a81554719cc67d4735e94027adfd6439ccc7)] +- WIP [Tiberiu Ichim - [`9ea1f51`](https://github.com/eea/volto-slate/commit/9ea1f5180bb0bafe0c06b701352c3123b092e867)] +- WIP [Tiberiu Ichim - [`1cd8999`](https://github.com/eea/volto-slate/commit/1cd89995e92222a871c93b2e69bf34170dff46f9)] +- WIP [Tiberiu Ichim - [`4db1e5e`](https://github.com/eea/volto-slate/commit/4db1e5e0389787e2f07ab8042cd5615d3bcfea19)] +- Make the editor usable [Tiberiu Ichim - [`aa39a7a`](https://github.com/eea/volto-slate/commit/aa39a7aa663d1ddf70ebff66f5829d5f53891d62)] +- Move selection to start of block [Tiberiu Ichim - [`476add2`](https://github.com/eea/volto-slate/commit/476add2578ac2b0402766ea12e299e8b4a926450)] +- Some improvements to selection hacks [Tiberiu Ichim - [`d2cd70a`](https://github.com/eea/volto-slate/commit/d2cd70a75a303830a31a20e396d8d5eaaa8ba6e4)] +- WIP, fix sel [Tiberiu Ichim - [`511d34d`](https://github.com/eea/volto-slate/commit/511d34dbb2a5e68bab156ea4ac1a9bd8e550d6de)] +- WIP on focus issues [Silviu Bogan - [`128af00`](https://github.com/eea/volto-slate/commit/128af00ec024cd355be7406a3371eb8f204190fb)] +- Solved issue with backward selection [Silviu Bogan - [`2a78991`](https://github.com/eea/volto-slate/commit/2a78991ae8c55c7b36d0b7321d82369a45f6610b)] +- Remove debugging list [Tiberiu Ichim - [`e7f8efe`](https://github.com/eea/volto-slate/commit/e7f8efedc9326ae3867000e51731434f6e7532cf)] +- Make persistent helpers dependent on selected state [Tiberiu Ichim - [`8a70d68`](https://github.com/eea/volto-slate/commit/8a70d680b752afa7b289d955c4dbfc8b94f65480)] +- Fix inline styling [Tiberiu Ichim - [`37d3d98`](https://github.com/eea/volto-slate/commit/37d3d98c29c16339660330569c80533146c2286b)] +- Selection refix [Tiberiu Ichim - [`34d4231`](https://github.com/eea/volto-slate/commit/34d4231076ca84f5bf0ee9a46f10eb51163cb635)] +- Throttle selection saving [Tiberiu Ichim - [`eca91ba`](https://github.com/eea/volto-slate/commit/eca91ba6b85c7788596c559bd58742da3bb51ae8)] +- Be more specific on which dom selection we're interested [Tiberiu Ichim - [`b050d51`](https://github.com/eea/volto-slate/commit/b050d514758b1fce812b4c7747185dd790cc4bf2)] +- Add comment [Tiberiu Ichim - [`267d6d2`](https://github.com/eea/volto-slate/commit/267d6d2a605bfa498db042f9dc4a8fff209e2f05)] +- Fix focusing of editor [Tiberiu Ichim - [`2f2f346`](https://github.com/eea/volto-slate/commit/2f2f34634028886bb2e2c04d4b7c53693ea3a229)] +- Make selection handling more consistent [Tiberiu Ichim - [`30c82bc`](https://github.com/eea/volto-slate/commit/30c82bcfbabd53afbcdb283af9db1016a41c3ebd)] +- WIP, add Slate RichTextWidget [Tiberiu Ichim - [`7b91b1a`](https://github.com/eea/volto-slate/commit/7b91b1aa8945be8eaa5af9df3a2157ee85138675)] +- Add StyleMenu [Tiberiu Ichim - [`d0d9cd8`](https://github.com/eea/volto-slate/commit/d0d9cd8b55935980c8dfabaa5f4791e7f8f33e0f)] +- Revert ToolbarButton [Tiberiu Ichim - [`e295542`](https://github.com/eea/volto-slate/commit/e2955420eb73a078830f79fc720240778702a5e3)] +- Simplify code [Tiberiu Ichim - [`8725d83`](https://github.com/eea/volto-slate/commit/8725d8307dd192b6f607719af9ef79c6dae78660)] +- Improve paste handling [Tiberiu Ichim - [`461bcef`](https://github.com/eea/volto-slate/commit/461bcefe7f6dd2fc0fb2773bbb4c61f19f90e7d4)] +- Fix theming [Tiberiu Ichim - [`2be09fa`](https://github.com/eea/volto-slate/commit/2be09fa1e1f2c1421b32d4534dd621da77dd8969)] +- Solved style issue [Silviu Bogan - [`c9cff8d`](https://github.com/eea/volto-slate/commit/c9cff8de6232cd7ac765bda6b3281d81920e21f0)] +- Dropdown focusing and blurring work pretty well [Silviu Bogan - [`769cce0`](https://github.com/eea/volto-slate/commit/769cce0cff4c6cd95202d7a6358201e762572425)] +- Dropdown now shows w/o hiding the hovering toolbar [Silviu Bogan - [`9a9e523`](https://github.com/eea/volto-slate/commit/9a9e5236bce3087fec79fba3aafbf887adc77ee2)] +- Improved style [Silviu Bogan - [`f5f67f8`](https://github.com/eea/volto-slate/commit/f5f67f8d2e401fbe1f9e5b22d9815ceecf0e9cad)] +- Improved style and set defaultValue to react-select [Silviu Bogan - [`2ad7bb1`](https://github.com/eea/volto-slate/commit/2ad7bb168304c57f9aaef75b6c1d49f761156e4b)] +- Basic empty nice styled unusable react-select [Silviu Bogan - [`355059b`](https://github.com/eea/volto-slate/commit/355059b329266a7cdf364aa05be9f94028abff37)] +- Code cleanup [Tiberiu Ichim - [`ba95e06`](https://github.com/eea/volto-slate/commit/ba95e06754410479cd229d877d24473718b9391f)] +- Improve paste from google docs [Tiberiu Ichim - [`5728544`](https://github.com/eea/volto-slate/commit/57285445aefbce06a0771a0df4b5311cb7f6f440)] +- Improve inline format button [Tiberiu Ichim - [`27bf284`](https://github.com/eea/volto-slate/commit/27bf28452a0f178803c2603e292fa1eed2e4ea9e)] +- Improved comments, added new comments [Silviu Bogan - [`7f80ab3`](https://github.com/eea/volto-slate/commit/7f80ab32e1f56896d392a1d38d16ae2a60084e9b)] +- Handle most elements as inline elements [Tiberiu Ichim - [`379fab6`](https://github.com/eea/volto-slate/commit/379fab6c0e41a2db3db5a602f7fe1019dfbac686)] +- WIP [Tiberiu Ichim - [`3123248`](https://github.com/eea/volto-slate/commit/312324883e953bbc09e6b938c07ecda31a924d69)] +- Wrapped some comments and doc comments at 80 chars [Silviu Bogan - [`7c04d74`](https://github.com/eea/volto-slate/commit/7c04d7449c7fe7172b439b38235dd2feada4d9c0)] +- Improved comments + added new comments [Silviu Bogan - [`30f2de1`](https://github.com/eea/volto-slate/commit/30f2de1fa6b992b0834c959cb46ac6022dcb20e5)] +- WIP [Tiberiu Ichim - [`2b23c8d`](https://github.com/eea/volto-slate/commit/2b23c8d2e395d89afa180300927938720c930505)] +- Improve paste handling of complex inline text [Tiberiu Ichim - [`934014c`](https://github.com/eea/volto-slate/commit/934014ca6cf51d0d4d585011b3c97f53d1fc6581)] +- Improved and added new comments [Silviu Bogan - [`82c3061`](https://github.com/eea/volto-slate/commit/82c3061de07f79f2d2af2ea9ba1d854df3ca8ab5)] +- Use Promise-based Form methods + improved comments [Silviu Bogan - [`656550c`](https://github.com/eea/volto-slate/commit/656550c799aeb58c31c09e2dae1fe573d4623481)] +- Improve paste handling of google docs content [Tiberiu Ichim - [`7fe8229`](https://github.com/eea/volto-slate/commit/7fe82292faa4d4272f2f15488eb7b6aa8aef4e39)] +- Improve paste handling of <strong><a /></strong> [Tiberiu Ichim - [`3a5ef37`](https://github.com/eea/volto-slate/commit/3a5ef37ea0a9068447160c9fc81cfd9156610093)] +### [0.5.3](https://github.com/eea/volto-slate/compare/0.5.2...0.5.3) - 22 August 2020 + +#### :hammer_and_wrench: Others + +- Hack closing the block chooser on click outside [Tiberiu Ichim - [`f3aa023`](https://github.com/eea/volto-slate/commit/f3aa023fb0ddbe1d76c71730d682f9598511c1c5)] +- Fix spellcheck param [Tiberiu Ichim - [`fd670bb`](https://github.com/eea/volto-slate/commit/fd670bb60a9f16d92bbff653c80285f41936d8ba)] +- Hide block chooser after adding a Slate Text block [Silviu Bogan - [`133d153`](https://github.com/eea/volto-slate/commit/133d153bfffc9dc3adafc025bc2cc7be62a716e9)] +### [0.5.2](https://github.com/eea/volto-slate/compare/0.5.1...0.5.2) - 21 August 2020 + +#### :hammer_and_wrench: Others + +- Fix paste insert [Tiberiu Ichim - [`a5f73d0`](https://github.com/eea/volto-slate/commit/a5f73d0d8bb10866dd54f680034f90b16f17bbb6)] +### [0.5.1](https://github.com/eea/volto-slate/compare/0.5.0...0.5.1) - 21 August 2020 + +#### :hammer_and_wrench: Others + +- Fix paste [Tiberiu Ichim - [`ebbbd1f`](https://github.com/eea/volto-slate/commit/ebbbd1fb34fd649b60c41319fbd6407fc2d5ac95)] +### [0.5.0](https://github.com/eea/volto-slate/compare/0.4.9...0.5.0) - 20 August 2020 + +#### :hammer_and_wrench: Others + +- Fix selection collapse problem [Tiberiu Ichim - [`faa2447`](https://github.com/eea/volto-slate/commit/faa2447916ce4d30ee61670fbdd3cbeb3a1210b8)] +- Adedd todo [Tiberiu Ichim - [`c168aae`](https://github.com/eea/volto-slate/commit/c168aae7b3d360a3bf0230e78f4da3624a6839ee)] +- Paste from Google Spreadsheet w/o useless text [Silviu Bogan - [`9df7731`](https://github.com/eea/volto-slate/commit/9df773107dc0b9440ac01e6ad8f3a94157a02bde)] +### [0.4.9](https://github.com/eea/volto-slate/compare/0.4.8...0.4.9) - 19 August 2020 + +#### :hammer_and_wrench: Others + +- Semantic [Alin Voinea - [`4d66105`](https://github.com/eea/volto-slate/commit/4d6610511dba5e194bc180bec8fb3b5610e158c5)] +- UI improvements [kreafox - [`30a0431`](https://github.com/eea/volto-slate/commit/30a043125bb2062701082c382b08b6ae9b0e4339)] +- Solved an issue about loading link data in the edit link form [Silviu Bogan - [`1e0ab95`](https://github.com/eea/volto-slate/commit/1e0ab95b2c8a77d65314802881e6feb2cba8222e)] +- Use accordion instead of tabs for fieldsets [kreafox - [`588ced6`](https://github.com/eea/volto-slate/commit/588ced6ad17895332e549329dc02512735d00ce5)] +- Make the object browser widget be able to select a single object at once [Silviu Bogan - [`6636ca4`](https://github.com/eea/volto-slate/commit/6636ca4b8e8c348b8982b4728c940422c3057385)] +- Solved some errors [Silviu Bogan - [`74f8de6`](https://github.com/eea/volto-slate/commit/74f8de638e6d7d720049a597768997c20b5d7489)] +- Work on the link form features [Silviu Bogan - [`273ab99`](https://github.com/eea/volto-slate/commit/273ab99bd145f643c12618ebc26a7eac03ddac46)] +- Solved another error in the browser console [Silviu Bogan - [`cc13187`](https://github.com/eea/volto-slate/commit/cc13187004787401dc8b69b82d7efcc93b06b2ba)] +- Solved crash when inserting an internal link [Silviu Bogan - [`16e4c63`](https://github.com/eea/volto-slate/commit/16e4c63b7af045aa0490e365c8eb1fe0d3311fbc)] +- Solved one of the errors in the browser console [Silviu Bogan - [`29afa78`](https://github.com/eea/volto-slate/commit/29afa7850c4ddf052d1b1f6ba950b386920dae33)] +- WIP refactor link toolbar [kreafox - [`fb475a1`](https://github.com/eea/volto-slate/commit/fb475a1d7045ad029f8c91e3c94317945221c624)] +- WIP refactor link toolbar [kreafox - [`bd6f10c`](https://github.com/eea/volto-slate/commit/bd6f10ce526fc26515a650f05ec3872906860e60)] +- Small improvements [kreafox - [`bdab614`](https://github.com/eea/volto-slate/commit/bdab614a83b4dbddb2fc268d55740444cdbd112b)] +- WIP refactor link toolbar [kreafox - [`c49eae8`](https://github.com/eea/volto-slate/commit/c49eae85f4e5400da4d9640b7534d4bffb306742)] +### [0.4.8](https://github.com/eea/volto-slate/compare/0.4.7...0.4.8) - 19 August 2020 + +#### :hammer_and_wrench: Others + +- Add title to footnote context button [Alin Voinea - [`7f69c6f`](https://github.com/eea/volto-slate/commit/7f69c6fbd6fe51416df80d75daa2227077efdb10)] +### [0.4.7](https://github.com/eea/volto-slate/compare/0.4.6...0.4.7) - 19 August 2020 + +#### :hammer_and_wrench: Others + +- Add title to toolbar buttons [Alin Voinea - [`fd8fcb9`](https://github.com/eea/volto-slate/commit/fd8fcb97e07e4c6d69e34457e59b8915fc29e39e)] +### [0.4.6](https://github.com/eea/volto-slate/compare/0.4.5...0.4.6) - 18 August 2020 + +#### :hammer_and_wrench: Others + +- Improved comments, used promise-based Form functions more [Silviu Bogan - [`a83948c`](https://github.com/eea/volto-slate/commit/a83948c238b7708e5bd1277f05acc8bb1406c430)] +- Improved doc comments [Silviu Bogan - [`3245f6a`](https://github.com/eea/volto-slate/commit/3245f6af8d8ab2ff352c27c0499a67f0c857a1e8)] +- Improved comments [Silviu Bogan - [`6721e06`](https://github.com/eea/volto-slate/commit/6721e068874f6f18f370dad74569986051749457)] +- Improved comments, modularization + called unref on two Slate refs [Silviu Bogan - [`120ddf3`](https://github.com/eea/volto-slate/commit/120ddf3344e9c86c34d921eed4e226f2e4c2396d)] +- Improved comments and modularization [Silviu Bogan - [`a47c4ef`](https://github.com/eea/volto-slate/commit/a47c4ef4ad1a98aaddd5d30c253d2d9693c6f07b)] +- Improved comments [Silviu Bogan - [`3d7a507`](https://github.com/eea/volto-slate/commit/3d7a50768c852e5664d74d51952781a26be691b9)] +- Improved comments and doc comments [Silviu Bogan - [`651b476`](https://github.com/eea/volto-slate/commit/651b4769ca456cdcdbbf695492c1f1e85c60dd5f)] +- Improved doc comments [Silviu Bogan - [`70969a2`](https://github.com/eea/volto-slate/commit/70969a2a9f9b13cd4af767f72ef87b879d4e7dfa)] +- Improved doc comments [Silviu Bogan - [`3d4f6fd`](https://github.com/eea/volto-slate/commit/3d4f6fdf9802cc8dcd869c512801a087b7367f11)] +- Improved doc comments [Silviu Bogan - [`ae55996`](https://github.com/eea/volto-slate/commit/ae55996fc1f3cd0099d2d5e77438a186f3090b5b)] +- Improved normal and doc comments [Silviu Bogan - [`0a7241d`](https://github.com/eea/volto-slate/commit/0a7241da86fada2c54b8c941da891363e537e779)] +- Improved doc comments [Silviu Bogan - [`9e0cfc7`](https://github.com/eea/volto-slate/commit/9e0cfc765f2a2da2cfed724c859706fac9bce08f)] +- Improved doc comments [Silviu Bogan - [`4647fde`](https://github.com/eea/volto-slate/commit/4647fde200298c3ea1ffbe5d99125d39f0eda534)] +- Improved doc comments + solved missing style issue [Silviu Bogan - [`21fd477`](https://github.com/eea/volto-slate/commit/21fd47762344351694b0f40896304fa043e3148e)] +- Improved doc comments + small cleanup [Silviu Bogan - [`26db68a`](https://github.com/eea/volto-slate/commit/26db68af98620cdd3aa144e75570e4213d3d8a46)] +### [0.4.5](https://github.com/eea/volto-slate/compare/0.4.4...0.4.5) - 17 August 2020 + +#### :hammer_and_wrench: Others + +- Cosmetics [Alin Voinea - [`bfb9f97`](https://github.com/eea/volto-slate/commit/bfb9f970a5425c0342f5d3e20fd258150b512877)] +### [0.4.4](https://github.com/eea/volto-slate/compare/0.4.3...0.4.4) - 17 August 2020 + +#### :hammer_and_wrench: Others + +- Added new doc comments [Silviu Bogan - [`f05efe1`](https://github.com/eea/volto-slate/commit/f05efe1ebdd821040890cc7b9bee1d0f025a7f18)] +- Added listing in the sidebar for supported Markdown [Silviu Bogan - [`d3d2ea6`](https://github.com/eea/volto-slate/commit/d3d2ea6baabaed4f1b1eb4a91a71b1fd94e3ca46)] +- Removed TODO comment [Silviu Bogan - [`5fe2e30`](https://github.com/eea/volto-slate/commit/5fe2e300cde556a2f1718213adc3a1035d755a3b)] +- Solved issue: list item by default contained a paragraph in Markdown plugin [Silviu Bogan - [`fd488b6`](https://github.com/eea/volto-slate/commit/fd488b61689b1563e1f1585c71f88182625ad0c8)] +- A little bit of cleanup + 2 new TODO comments [Silviu Bogan - [`35298d4`](https://github.com/eea/volto-slate/commit/35298d4cabab25c4543f1222b1c41f26088bd979)] +- Solved some issues of the Markdown plugin [Silviu Bogan - [`9dceaf8`](https://github.com/eea/volto-slate/commit/9dceaf8fb8a712bc589ff0b40cd8bc0f279c34da)] +- Corrected README.md [Silviu Bogan - [`537d83f`](https://github.com/eea/volto-slate/commit/537d83ff14e86e2327f935478ab8d13ad788b437)] +- Removed old TextBlockEdit.jsx file [Silviu Bogan - [`dcb8a8f`](https://github.com/eea/volto-slate/commit/dcb8a8f3923b0e201c1aab83f197e2e9e2fc498d)] +- Cleanup, improved doc comments [Silviu Bogan - [`4927d76`](https://github.com/eea/volto-slate/commit/4927d76f18abd562658e0330deba43f87734383c)] +- Added a doc comment [Silviu Bogan - [`c56ac30`](https://github.com/eea/volto-slate/commit/c56ac30881547562ff275b4ac4dd6a51b14c79b8)] +- Added 3 new doc comments [Silviu Bogan - [`c0dbac0`](https://github.com/eea/volto-slate/commit/c0dbac00336ce459b5e46f863fed6c4af42b2d04)] +- Added a doc comment [Silviu Bogan - [`43b8c7c`](https://github.com/eea/volto-slate/commit/43b8c7c70d60b5d47c162e45b520b7130d7b8588)] +- Added a doc comment [Silviu Bogan - [`fd831ea`](https://github.com/eea/volto-slate/commit/fd831ea32c95da6ea83ca45936b1ffb9be163724)] +- Added an explanation inside a comment [Silviu Bogan - [`4f08db6`](https://github.com/eea/volto-slate/commit/4f08db694d4aa4f8c4395c649056d862e4e8dc9e)] +- Rewritten markdown plugin (flexible, as in slate-plugins) [Silviu Bogan - [`710f7e0`](https://github.com/eea/volto-slate/commit/710f7e0ebe22bf2164dacb20104898d2545930ac)] +### [0.4.3](https://github.com/eea/volto-slate/compare/0.4.2...0.4.3) - 17 August 2020 + +#### :hammer_and_wrench: Others + +- Activate inline shortcuts; use Popup for footnote decoration [Tiberiu Ichim - [`2a8ce8c`](https://github.com/eea/volto-slate/commit/2a8ce8c14e3876554360284fdb0e9ffb8cdbbd80)] +- Fix rendering of empty nodes [Tiberiu Ichim - [`b1cf52c`](https://github.com/eea/volto-slate/commit/b1cf52cba92f6524d9b878fa00ebadf366cf5695)] +- Don't include highlightByType by default, better to use CSS on special element class [Tiberiu Ichim - [`e7f31a6`](https://github.com/eea/volto-slate/commit/e7f31a67e156b2e20ff3602fbfa72f3523e26bc6)] +- Improve selection handling when selecting backward [Tiberiu Ichim - [`12b2f8b`](https://github.com/eea/volto-slate/commit/12b2f8b4ecd42d94792565561f467b9f561873fb)] +- Fix a problem with footnote highlight [Tiberiu Ichim - [`49e3cf0`](https://github.com/eea/volto-slate/commit/49e3cf0f9d89593778cb2117f512ef3d799c0057)] +- Pass a bit more information in rendering [Tiberiu Ichim - [`9d241a6`](https://github.com/eea/volto-slate/commit/9d241a6fe80ce4dba5a10e29aa5c781616d97bfd)] +- Use slate API to iterate over children; pass path to render elements [Tiberiu Ichim - [`833b84b`](https://github.com/eea/volto-slate/commit/833b84b38b833646d0ebda66a0c95a349467699b)] +- Rename functions to js case [Tiberiu Ichim - [`004adc8`](https://github.com/eea/volto-slate/commit/004adc85db75641c796dd84b4c23f59de224dab5)] +- Allow inline styling of everything [Tiberiu Ichim - [`fe43e55`](https://github.com/eea/volto-slate/commit/fe43e558df81f78c0b8592bc8d2de06513933924)] +- Added a doc comment [Silviu Bogan - [`ce2dae6`](https://github.com/eea/volto-slate/commit/ce2dae64adc80d06b4b3bebbe7d9287f8ef33088)] +- Added a doc comment [Silviu Bogan - [`4923b46`](https://github.com/eea/volto-slate/commit/4923b46a9ac04e315395fff7f55224a9ad57a020)] +- Added a doc comment [Silviu Bogan - [`53f76cf`](https://github.com/eea/volto-slate/commit/53f76cf07e9ba49d25aef729441807b3e16cde85)] +- Added a doc comment [Silviu Bogan - [`549d329`](https://github.com/eea/volto-slate/commit/549d329c7c0682b35cc1b59d2687c72cd18f8717)] +- A little bit of cleanup [Silviu Bogan - [`9f35399`](https://github.com/eea/volto-slate/commit/9f35399c2a3d1805baa46d642d94440ea60808c4)] +### [0.4.2](https://github.com/eea/volto-slate/compare/0.4.1...0.4.2) - 12 August 2020 + +#### :hammer_and_wrench: Others + +- Allow inline styling of void elements [Tiberiu Ichim - [`f146bdc`](https://github.com/eea/volto-slate/commit/f146bdc8093a704de1d274df1686c9c81bb530c7)] +- Fix spanDeserializer [Tiberiu Ichim - [`db3ef19`](https://github.com/eea/volto-slate/commit/db3ef19563a5d916bb0056269e1891a7abb29097)] +- Added TODO for <b> tag; renamed function [Tiberiu Ichim - [`8a56831`](https://github.com/eea/volto-slate/commit/8a5683188f87d68fb0c311d47dfc77521e0e4558)] +- Enable HighlightSelection, added comment about problem [Tiberiu Ichim - [`d5360ca`](https://github.com/eea/volto-slate/commit/d5360ca98e92f913c4740377bc7490f976279c0a)] +- Fix hooks rule problem [Tiberiu Ichim - [`f48bf68`](https://github.com/eea/volto-slate/commit/f48bf686f87c432560d958e295aacfd46f6c2934)] +- Fix selection problem [Tiberiu Ichim - [`b0f9f24`](https://github.com/eea/volto-slate/commit/b0f9f242f575b818f0de2463a10a93befd525ebb)] +- Working block emitter for tables inside Slate Text blocks + cleanup [Silviu Bogan - [`2c5fb85`](https://github.com/eea/volto-slate/commit/2c5fb85959057b6e667ba5c5b4ce38ad6e18ed57)] +- Improved style of tables inside Slate Text blocks [Silviu Bogan - [`21cdc11`](https://github.com/eea/volto-slate/commit/21cdc11d27461b330c83e68c19b7e7a324dfd8f0)] +- Table toolbar button inserts into current block + some new doc comments [Silviu Bogan - [`21feffd`](https://github.com/eea/volto-slate/commit/21feffd076224fa9ad0d8099abf72331e3afd2b4)] +### [0.4.1](https://github.com/eea/volto-slate/compare/0.4.0...0.4.1) - 11 August 2020 + +#### :hammer_and_wrench: Others + +- Added wrap inline markup text [Tiberiu Ichim - [`a3a6e21`](https://github.com/eea/volto-slate/commit/a3a6e219c2512585c6d6773c2545f75cf31a5144)] +- Revert "Clarified comments + solved small issues + extracted new functions" [Silviu Bogan - [`f7e6fae`](https://github.com/eea/volto-slate/commit/f7e6fae3bb5729d68c3579d8b5c0a702d4bfcd3b)] +- Clarified comments + solved small issues + extracted new functions [Silviu Bogan - [`dbd8bc5`](https://github.com/eea/volto-slate/commit/dbd8bc5c35434c386a929f6345c87f1f32d2a63a)] +- Fix styling of inline elements [Tiberiu Ichim - [`96e1397`](https://github.com/eea/volto-slate/commit/96e1397af8a5b51647f31cece1ab6bbb5443a908)] +- Bump version [Alin Voinea - [`35a0735`](https://github.com/eea/volto-slate/commit/35a0735903511523b8ebd7685114556d4d3c8ae8)] +- Tables created w/ table size picker have first row formatted differently [Silviu Bogan - [`e89eab0`](https://github.com/eea/volto-slate/commit/e89eab043da6054384a6ee368e242bfa3f7fc2c6)] +- Better unwrapping [Tiberiu Ichim - [`7eadc14`](https://github.com/eea/volto-slate/commit/7eadc14d27bb051bb9cbe377989422354cbb399b)] +- Fix unwrapping footnotes [Tiberiu Ichim - [`16e97cd`](https://github.com/eea/volto-slate/commit/16e97cd6218233b757c54287cfdee9cd27313fc9)] +### [0.4.0](https://github.com/eea/volto-slate/compare/0.3.9...0.4.0) - 11 August 2020 + +#### :hammer_and_wrench: Others + +- Fix inline styling [Tiberiu Ichim - [`06e6e6f`](https://github.com/eea/volto-slate/commit/06e6e6f360de0ff30d425ade55e817bf670b79c2)] +- Code cleanup [Tiberiu Ichim - [`d989283`](https://github.com/eea/volto-slate/commit/d989283d20ab7e9bba28c1efcbf412125a996fba)] +- Fix expanded toolbar [Tiberiu Ichim - [`5ddc775`](https://github.com/eea/volto-slate/commit/5ddc7756ff74dda983da3291b90d543485a77b52)] +- Remove logging call [Tiberiu Ichim - [`2e7b47b`](https://github.com/eea/volto-slate/commit/2e7b47b3be905857517fabec2d75ee3866e9648f)] +- Fix but with footnote editor sidebar [Tiberiu Ichim - [`3cfe975`](https://github.com/eea/volto-slate/commit/3cfe975708f2cba94cc2be5bbc09486e68e5645e)] +- Better footnote context button [Tiberiu Ichim - [`ecb01d4`](https://github.com/eea/volto-slate/commit/ecb01d433f2af1c5f5438722dcdc6e0e0445b161)] +- Merge table-button branch [Tiberiu Ichim - [`41a073f`](https://github.com/eea/volto-slate/commit/41a073fd66a778448942891b0b54332718126c71)] +- Better handling of collapse selection when adding new footnote [Tiberiu Ichim - [`93f2bc9`](https://github.com/eea/volto-slate/commit/93f2bc9e289a6e1ab402a6949423c87d0bf9c8b1)] +- Improve handling of selection highlighting [Tiberiu Ichim - [`071e3b1`](https://github.com/eea/volto-slate/commit/071e3b1e84d94c535e69f6f65d55910bf73d38af)] +- Delete unneeded files [Tiberiu Ichim - [`151f976`](https://github.com/eea/volto-slate/commit/151f976408af31db613bf94c928d13c7d681a589)] +- WIP on footnote button [Tiberiu Ichim - [`a4210bc`](https://github.com/eea/volto-slate/commit/a4210bcfbde6e313a873bdb141d534843648d831)] +- WIP on footnote button [Tiberiu Ichim - [`e222f79`](https://github.com/eea/volto-slate/commit/e222f79500e07152edea989fac81a033727b0d7e)] +- WIP on footnote button [Tiberiu Ichim - [`1c39a5d`](https://github.com/eea/volto-slate/commit/1c39a5d446caf4d9fa7f108eefa8ac32a4a6463a)] +- WIP, refactored footnote button [Tiberiu Ichim - [`ea40ac2`](https://github.com/eea/volto-slate/commit/ea40ac20c027ed9bf25c78c81182135d15ef0b33)] +- Revert "New <li> deserializer that ignores direct <p> child but takes its content" [Silviu Bogan - [`772aa9f`](https://github.com/eea/volto-slate/commit/772aa9fa8e9c85e6eff32851f1d596bc2b1d9a8b)] +- Solved 2 browser console warnings + separated a little LESS from JS [Silviu Bogan - [`9520aed`](https://github.com/eea/volto-slate/commit/9520aedfdcdca4aebb00a501d529842559499250)] +- Focus the newly created Slate Table block [Silviu Bogan - [`cfe04eb`](https://github.com/eea/volto-slate/commit/cfe04eb9f8088dd7c5d0994c75403f72513b321e)] +- Table size picker works but does not focus the new table [Silviu Bogan - [`035cf27`](https://github.com/eea/volto-slate/commit/035cf27fd4e9da92333d60beb235e10fc05b18c4)] +- Store live object as savedSelection [Tiberiu Ichim - [`1163fa2`](https://github.com/eea/volto-slate/commit/1163fa233dae0d15abd509afafa066f2e55b9dbc)] +- Improve style, make it more like Volto [Silviu Bogan - [`5ca617d`](https://github.com/eea/volto-slate/commit/5ca617df536935b1b6bff99d687fec7fc293165c)] +- WIP, refactored footnote button [Tiberiu Ichim - [`c75cdaf`](https://github.com/eea/volto-slate/commit/c75cdafdbfe82956d56a8b29ced3b6d16c689955)] +- Reset state before showing the TableSizePicker [Silviu Bogan - [`14cc81b`](https://github.com/eea/volto-slate/commit/14cc81b7f328e9a3a710af2e804bd68e19301d77)] +- WIP [Tiberiu Ichim - [`64d6ee4`](https://github.com/eea/volto-slate/commit/64d6ee4d136c9a2bb532611ab5fbcd5596c9b2d5)] +- Cleanup + LESS improvements + another small change [Silviu Bogan - [`920dbc1`](https://github.com/eea/volto-slate/commit/920dbc191fffc2aaf80921a66444acbff95dee4b)] +- Improved style + table size picker resizes itself for the user [Silviu Bogan - [`fc6c3c6`](https://github.com/eea/volto-slate/commit/fc6c3c66832caa3e843b67ebe8ab3028c6fd7c29)] +- Open table size picker on click not mouseEnter [Silviu Bogan - [`a143b1f`](https://github.com/eea/volto-slate/commit/a143b1f61b8c6bb712c4e944f16582890fa0e04b)] +- Moved a LESS file import and renamed a component [Silviu Bogan - [`5286f08`](https://github.com/eea/volto-slate/commit/5286f081c3087d785c6c24354580d9c75d91112d)] +- WIP on active cells' background style [Silviu Bogan - [`1e6683a`](https://github.com/eea/volto-slate/commit/1e6683a916b8eb374f2721b6ea83b8fea6998d27)] +- WIP on table size selector's components [Silviu Bogan - [`1cecefe`](https://github.com/eea/volto-slate/commit/1cecefe822358fd07df663bdc976c4b828835b24)] +- WIP on table button and menu [Silviu Bogan - [`3184d49`](https://github.com/eea/volto-slate/commit/3184d4968232106a864c63502229b82e0b7508b6)] +- WIP [Tiberiu Ichim - [`2b3afb5`](https://github.com/eea/volto-slate/commit/2b3afb5770ea9656e419d5c38b77d4438c7c3e29)] +- New <li> deserializer that ignores direct <p> child but takes its content [Silviu Bogan - [`23caf88`](https://github.com/eea/volto-slate/commit/23caf88f42aaf006ed5931fa19e923b9cd6ab622)] +- Fix bug in decorate [Tiberiu Ichim - [`3853fe1`](https://github.com/eea/volto-slate/commit/3853fe1be8fe9c66cde1aa55a0e74e70a12e9a61)] +- Refactored footnote plugin [Tiberiu Ichim - [`2ea1425`](https://github.com/eea/volto-slate/commit/2ea14252a4f606dca138f736709322ebfffd9056)] +- Make selection highlight work [Tiberiu Ichim - [`9e46d09`](https://github.com/eea/volto-slate/commit/9e46d096a3de222743eb34859f2dc04a05d08867)] +- WIP on fixing selection handling [Tiberiu Ichim - [`cc6bf22`](https://github.com/eea/volto-slate/commit/cc6bf222558474c9e385a69877549b0c181e34c9)] +- WIP on fixing selection handling [Tiberiu Ichim - [`4062337`](https://github.com/eea/volto-slate/commit/40623376bc56cdbee284aae071abe8424898d0b4)] +- Refactor toolbar [Tiberiu Ichim - [`46697e1`](https://github.com/eea/volto-slate/commit/46697e1fd34f8c46e8f7b0b5f9f586005e4b6928)] +### [0.3.9](https://github.com/eea/volto-slate/compare/0.3.8...0.3.9) - 6 August 2020 + +#### :hammer_and_wrench: Others + +- Make footnotes node types configurable and extendible [Alin Voinea - [`3f1cf82`](https://github.com/eea/volto-slate/commit/3f1cf8209dd5c64ba43cbd43953daa3dfa9cdc7d)] +### [0.3.8](https://github.com/eea/volto-slate/compare/0.3.7...0.3.8) - 5 August 2020 + +#### :hammer_and_wrench: Others + +- Code cleanup [Tiberiu Ichim - [`f049530`](https://github.com/eea/volto-slate/commit/f049530fd73f8f882013dce156a6a63b8faeaa9e)] +- Code cleanup [Tiberiu Ichim - [`72f8f69`](https://github.com/eea/volto-slate/commit/72f8f69c5f35f75ae461353c66b4392525d03b31)] +- Added usePluginToolbar [Tiberiu Ichim - [`772fdd9`](https://github.com/eea/volto-slate/commit/772fdd9aafc65fa8c04f00c45ca0598a4a70341c)] +- WIP on more friendly footnotes [Silviu Bogan - [`e31bec6`](https://github.com/eea/volto-slate/commit/e31bec6852ad0990d515ca3a7d9baa6e008e5817)] +- Small changes that make the footnotes code work again [Silviu Bogan - [`0ea4dc4`](https://github.com/eea/volto-slate/commit/0ea4dc4e2ff9df018056aaf30597491676677fba)] +- Disable marks (bold, italic etc.) for selection inside footnote [Silviu Bogan - [`3fe8106`](https://github.com/eea/volto-slate/commit/3fe810640f6f71d0243f9f7702f7e86d57851b55)] +- Added files [Tiberiu Ichim - [`199f5a3`](https://github.com/eea/volto-slate/commit/199f5a3b4badc00755f9a003c1065934f6577cdc)] +- Refactor toolbar [Tiberiu Ichim - [`f3b2747`](https://github.com/eea/volto-slate/commit/f3b2747101fde07e2dd2aaa42a681d5ae41d353d)] +- Solved issue: textarea empties itself on click [Silviu Bogan - [`21ad480`](https://github.com/eea/volto-slate/commit/21ad4809e6ece46922e741e6e03f3c77d1c864a0)] +- WIP to solve issue: textarea empties itself on click [Silviu Bogan - [`81f8971`](https://github.com/eea/volto-slate/commit/81f8971d7006725ac8c0f9fcb0f883a31b09b9c0)] +- Show the footnote toolbar only on collapsed selection [Silviu Bogan - [`f9af0ce`](https://github.com/eea/volto-slate/commit/f9af0ce0f614ad99657f129ef1c2066809cd7a9b)] +- More work on footnotes feature [Silviu Bogan - [`08f1cfe`](https://github.com/eea/volto-slate/commit/08f1cfe147a99eaa8f27332266b823353f232dba)] +- Removed some duplicate code [Silviu Bogan - [`745a2f5`](https://github.com/eea/volto-slate/commit/745a2f55f2b739291e8405f7cbc0e47583aa51c4)] +- Working footnote React context [Silviu Bogan - [`7ddde4c`](https://github.com/eea/volto-slate/commit/7ddde4c9ff3b4494e8e47ee23878540abce9c17b)] +- Cleanup code [Tiberiu Ichim - [`89cd5f8`](https://github.com/eea/volto-slate/commit/89cd5f8eda364bbf6bb83abc3119f783d2d91376)] +- Style is good, attempt to share footnote data using a context [Silviu Bogan - [`ed4cf83`](https://github.com/eea/volto-slate/commit/ed4cf839305348a4f529e41aa7216416242e6160)] +- Table pasting works well [Silviu Bogan - [`900b48a`](https://github.com/eea/volto-slate/commit/900b48ac5e639679e4ffa34b3dd1e8b4a3523881)] +### [0.3.7](https://github.com/eea/volto-slate/compare/0.3.6...0.3.7) - 2 August 2020 + +#### :hammer_and_wrench: Others + +- Add stub table deconstructor [Tiberiu Ichim - [`f256192`](https://github.com/eea/volto-slate/commit/f256192db98e0b60cae333e35ea4e8f4bbfc7246)] +- Split image block deconstruction to separate module [Tiberiu Ichim - [`879e23a`](https://github.com/eea/volto-slate/commit/879e23a562677fda5e258d45701d55acbc98cd91)] +- WIP on table paste handling [Tiberiu Ichim - [`f0b71ce`](https://github.com/eea/volto-slate/commit/f0b71ce8305a861707289af32f21bab1eb9cbf24)] +- WIP on table paste handling [Tiberiu Ichim - [`3f98c7f`](https://github.com/eea/volto-slate/commit/3f98c7f9c0723d7e1aaad8f2c67cedaa1ebbfbbe)] +- WIP on table paste handling [Tiberiu Ichim - [`9f68586`](https://github.com/eea/volto-slate/commit/9f68586e6a3e48dd8596c7cfb6e8c01c0408eee6)] +- rename config method [Tiberiu Ichim - [`5e804b3`](https://github.com/eea/volto-slate/commit/5e804b3faf11078564013c38ee1da0166faf6328)] +- Refactored blocks [Tiberiu Ichim - [`165582c`](https://github.com/eea/volto-slate/commit/165582c65f4d574cb8fa8e495e54f7e49aa2e4dd)] +- Don't use TextBlockView in Table Cell View [Tiberiu Ichim - [`98e6d6a`](https://github.com/eea/volto-slate/commit/98e6d6a29286ee3cd16852e2222274e949a38f9c)] +- Reorganize blocks [Tiberiu Ichim - [`6af8de4`](https://github.com/eea/volto-slate/commit/6af8de4013886228ab664c9fadb06086144dd377)] +- Renamed TablePaste to Table [Tiberiu Ichim - [`c4c94cd`](https://github.com/eea/volto-slate/commit/c4c94cda3449f70e1c54da7fd4cdd49204d0f97a)] +- Improve paste handling [Tiberiu Ichim - [`fd665a7`](https://github.com/eea/volto-slate/commit/fd665a71bfd2a20feeba87bd6d70f67c2da979c0)] +- Added index module in Table [Tiberiu Ichim - [`8b39ae4`](https://github.com/eea/volto-slate/commit/8b39ae43348a37e911214c6232386e2803e51c9a)] +- WIP on table paste feature (partially working) [Silviu Bogan - [`60d6025`](https://github.com/eea/volto-slate/commit/60d6025882805ee2780bc72e31c9a75f62106d1e)] +- Working prototype of Slate Table block type [Silviu Bogan - [`2777185`](https://github.com/eea/volto-slate/commit/277718519efa209b010db862f49a779a26443622)] +- Slate Table block type w/ 1 issue: [Silviu Bogan - [`85449d6`](https://github.com/eea/volto-slate/commit/85449d6c242857b884b2b45d000faa2020007875)] +- WIP on Cell & Edit components for Slate Table block [Silviu Bogan - [`092bb9d`](https://github.com/eea/volto-slate/commit/092bb9dc8ca51ff45b1418793316c7fef9b845d8)] +- Partially working Slate.js-based Table Edit component [Silviu Bogan - [`81b22ed`](https://github.com/eea/volto-slate/commit/81b22edfe8725779218fb3fc5a6afde9f5eebc48)] +- WIP on Slate.js-based Volto table block [Silviu Bogan - [`916d7a5`](https://github.com/eea/volto-slate/commit/916d7a54acf8affbcbda04df6463abcccbc1dd80)] +### [0.3.6](https://github.com/eea/volto-slate/compare/0.3.5...0.3.6) - 30 July 2020 + +#### :hammer_and_wrench: Others + +- Release 0.3.6 [Alin Voinea - [`ffe1528`](https://github.com/eea/volto-slate/commit/ffe15287adc2aac43a26d2e9fec55f8ad453ba1b)] +### [0.3.5](https://github.com/eea/volto-slate/compare/0.3.4...0.3.5) - 30 July 2020 + +#### :hammer_and_wrench: Others + +- Finished work on image paste feature [Silviu Bogan - [`dad1ff0`](https://github.com/eea/volto-slate/commit/dad1ff075123efb57f551ab6aa69963b085f4eb8)] +- Added image utils [Tiberiu Ichim - [`56a6f00`](https://github.com/eea/volto-slate/commit/56a6f00326305e0731bc75e46a6d0c061dc91c14)] +- Improve paste handling [Tiberiu Ichim - [`44bb370`](https://github.com/eea/volto-slate/commit/44bb370011613493056bdd8c2fa4a0774dabef8a)] +- Pasting an image URL shows the image but does not upload it [Silviu Bogan - [`bf4845c`](https://github.com/eea/volto-slate/commit/bf4845cdb48fd69154266bc7bbb3c536a9fba79c)] +- WIP on paste handling [Tiberiu Ichim - [`776a5dc`](https://github.com/eea/volto-slate/commit/776a5dc7322f85060b0baccf47c51480778167e8)] +### [0.3.4](https://github.com/eea/volto-slate/compare/0.3.3...0.3.4) - 28 July 2020 + +#### :hammer_and_wrench: Others + +- Remove logging call [Tiberiu Ichim - [`18ca8f2`](https://github.com/eea/volto-slate/commit/18ca8f28913cf110b5be2152878c81db49f34f9b)] +- improve deconstruct volto blocks [Tiberiu Ichim - [`c90d8b9`](https://github.com/eea/volto-slate/commit/c90d8b976c29bb6a919e91ad3b93e9b0359c89e8)] +- Further simplify deserialize [Tiberiu Ichim - [`be155f1`](https://github.com/eea/volto-slate/commit/be155f1a661ce0fd9f63f1c2cdaa68d4616f3cca)] +- Simplify code in deserialize [Tiberiu Ichim - [`2225b55`](https://github.com/eea/volto-slate/commit/2225b5538fbc599de4206b0aaf5bde0b9a0548af)] +- Format file [Tiberiu Ichim - [`84a227c`](https://github.com/eea/volto-slate/commit/84a227c619f6f770bb43f958eb392a6cbcafa2ee)] +- WIP on paste handling [Tiberiu Ichim - [`112bc80`](https://github.com/eea/volto-slate/commit/112bc80e90066144bc2672b803b529aa57b893cf)] +- All existing Cypress tests are passed [Silviu Bogan - [`c050134`](https://github.com/eea/volto-slate/commit/c050134f68ecc1ea0e8c84ca778aa0d7c3f5fc24)] +- Fix to work with stable tag release [Alin Voinea - [`3fb13c7`](https://github.com/eea/volto-slate/commit/3fb13c79d2ee8cb0c48288473f04f29eef4dd850)] +### [0.3.3](https://github.com/eea/volto-slate/compare/0.3.2...0.3.3) - 27 July 2020 + +#### :hammer_and_wrench: Others + +- Handle sub/sup paste from microsoft word [Alin Voinea - [`13349a9`](https://github.com/eea/volto-slate/commit/13349a9a9e3bbb494b5c06625ffdc11c0f6db678)] +### [0.3.2](https://github.com/eea/volto-slate/compare/0.3.1...0.3.2) - 27 July 2020 + +#### :hammer_and_wrench: Others + +- Added span deserializer [Tiberiu Ichim - [`5e61ad9`](https://github.com/eea/volto-slate/commit/5e61ad9cdf4c4dd9422a7b1ca68de5b547038903)] +- Add sub and sup editor buttons [Alin Voinea - [`be30a7c`](https://github.com/eea/volto-slate/commit/be30a7c704ccc95a271c13f43b3049989e01dc01)] +- Fix join and traverse blocks [Tiberiu Ichim - [`356a957`](https://github.com/eea/volto-slate/commit/356a9575bf871303966ed4b4acf7605befc3a1ba)] +- Refactor createSlateBlock [Tiberiu Ichim - [`4afd05f`](https://github.com/eea/volto-slate/commit/4afd05fe8702b98adb44f3c669109b66d286592b)] +- Improve paste handling [Tiberiu Ichim - [`7222c74`](https://github.com/eea/volto-slate/commit/7222c745c948c83a15a8229778aa67bd75d0d49e)] +- WIP on paste [Tiberiu Ichim - [`2ed2ee8`](https://github.com/eea/volto-slate/commit/2ed2ee8569310d3e87fe2e3a7790200bd16c750a)] +### [0.3.1](https://github.com/eea/volto-slate/compare/0.3...0.3.1) - 27 July 2020 + +#### :hammer_and_wrench: Others + +- Try to get placeholder from data [Alin Voinea - [`07bdb70`](https://github.com/eea/volto-slate/commit/07bdb7034b09a6ec4187df813e87170926a00739)] +- Adjust for Volto form_context_clean_breaking branch [Tiberiu Ichim - [`0fe5367`](https://github.com/eea/volto-slate/commit/0fe5367d8e945e15b23396a9ed305cf42a1d1814)] +### [0.3](https://github.com/eea/volto-slate/compare/0.2...0.3) - 25 July 2020 + +#### :hammer_and_wrench: Others + +- Fix TypeError: Cannot read property ... [Alin Voinea - [`387129e`](https://github.com/eea/volto-slate/commit/387129e652740da45d424b590e0b64ca6b864cb1)] +- Fix small issue with merging lists [Tiberiu Ichim - [`629b663`](https://github.com/eea/volto-slate/commit/629b66328b252facd38df79d5a95297d73b00009)] +- Fix problem with debug HOC [Tiberiu Ichim - [`66424a0`](https://github.com/eea/volto-slate/commit/66424a027c35ea88d09fe0c5a4a12890838a73f2)] +- Fix problem with debug HOC [Tiberiu Ichim - [`0298f37`](https://github.com/eea/volto-slate/commit/0298f37cc652990daf78b3d04a43385b03ab7763)] +- Fix key warning problem in node rendering [Tiberiu Ichim - [`4cc0119`](https://github.com/eea/volto-slate/commit/4cc011964591f69139d8e4294b554341092a4498)] +- Redo the way footnote ids are done [Tiberiu Ichim - [`cd85af1`](https://github.com/eea/volto-slate/commit/cd85af16faae93de5355bf25336a03a14cb7c0f1)] +- The Cypress test 02 is passed again [Silviu Bogan - [`7c5d15a`](https://github.com/eea/volto-slate/commit/7c5d15a87f0cba35f4c7b580ac566cad7b1b1796)] +- Rebuilt the docs [Silviu Bogan - [`ae32093`](https://github.com/eea/volto-slate/commit/ae320930c9131ac3431da54325b16bbf7b204509)] +- Corrected a list item in the docs [Silviu Bogan - [`d7da2ea`](https://github.com/eea/volto-slate/commit/d7da2eaacc6c4fbe63eeb6f54b6c1f2120ccabeb)] +### [0.2](https://github.com/eea/volto-slate/compare/0.1...0.2) - 22 July 2020 + +#### :hammer_and_wrench: Others + +- Improved documentation [Silviu Bogan - [`ea4593f`](https://github.com/eea/volto-slate/commit/ea4593f9ed2cfd05fc0ddb4807ea159273d6af20)] +- Improved documentation about extension points [Silviu Bogan - [`9533c4c`](https://github.com/eea/volto-slate/commit/9533c4c38dadc958614dd599f2c9003aacaa5c1c)] +- Fix list splitting [Tiberiu Ichim - [`f4a2762`](https://github.com/eea/volto-slate/commit/f4a27628a852d54c5faa6177d352270b719763b5)] +- Fix a bug in handling return in lists [Tiberiu Ichim - [`23287f7`](https://github.com/eea/volto-slate/commit/23287f7d8cb41c794c662fd82671aa6369f67e9c)] +- Add some info about loading images from clipboard [Tiberiu Ichim - [`62aadb0`](https://github.com/eea/volto-slate/commit/62aadb03024c848a52b224489718ede7a61248fd)] +- Fix a bug with editor extensions [Tiberiu Ichim - [`be68167`](https://github.com/eea/volto-slate/commit/be68167255d7b6e484e639d6c0fd59ae213d57c8)] +- Working implementation of image paste [Tiberiu Ichim - [`f924803`](https://github.com/eea/volto-slate/commit/f924803a3815a94b59875241d8df1693038c6334)] +- Code cleanup [Tiberiu Ichim - [`484027d`](https://github.com/eea/volto-slate/commit/484027d3b0a0da1ab9910d4c044df6790297074a)] +- Working image plugin [Tiberiu Ichim - [`75dbaa3`](https://github.com/eea/volto-slate/commit/75dbaa3f3317047b958c08693d50b3fb586e1f53)] +- WIP on image paste handling [Tiberiu Ichim - [`1cf5524`](https://github.com/eea/volto-slate/commit/1cf5524d5f7cb7ca7afe2477c3e8bfe38156fa85)] +- WIP on image paste handling [Tiberiu Ichim - [`8e3bc46`](https://github.com/eea/volto-slate/commit/8e3bc466d0e868ace58523efe63b2d0c238568b4)] +- Split listitems even when cursor is in another block [Tiberiu Ichim - [`b7a9ef6`](https://github.com/eea/volto-slate/commit/b7a9ef6fa3ab5e57da7d1fb159601491e4d2f6e7)] +- Added insertData for pasting [Tiberiu Ichim - [`6d93bbd`](https://github.com/eea/volto-slate/commit/6d93bbd859afcf3bd59b736e688a394f2f44dd48)] +- Improve move up/down list items [Tiberiu Ichim - [`32f0d3a`](https://github.com/eea/volto-slate/commit/32f0d3a4eb8dc46b5f6dd89a9ff107bdd06ed70b)] +- Improve decreaseItemDepth; move util code to utils/list [Tiberiu Ichim - [`e20cf92`](https://github.com/eea/volto-slate/commit/e20cf920c0e106375bf7c5ec52ca5a98fbbd1b14)] +- Fix merge [Tiberiu Ichim - [`472f80a`](https://github.com/eea/volto-slate/commit/472f80a05e8643cd2f3b8b89f70ce0ef7057caff)] +- Split merge code to separate functions [Tiberiu Ichim - [`f92d9c3`](https://github.com/eea/volto-slate/commit/f92d9c3d04a3d9430a85329cdcb291d559470de3)] +- Improve decreaseItemDepth [Tiberiu Ichim - [`1503775`](https://github.com/eea/volto-slate/commit/15037759a2572233470a41921b4ddd23662da704)] +- Improve increaseItemDepth implementation [Tiberiu Ichim - [`c1bc15c`](https://github.com/eea/volto-slate/commit/c1bc15c489a63ab6d1a10adba63cd45792b9824a)] +- Improve increaseItemDepth implementation [Tiberiu Ichim - [`9596894`](https://github.com/eea/volto-slate/commit/959689436996c55c9048d54fdd1a1cdf20ba4e4d)] +- Improve increaseItemDepth implementation [Tiberiu Ichim - [`af9b3f4`](https://github.com/eea/volto-slate/commit/af9b3f4108df1184918155a7513a82df08c6f874)] +- Fix traversing blocks [Tiberiu Ichim - [`4780f9a`](https://github.com/eea/volto-slate/commit/4780f9a1a07cf735b4e7785e4f2843b867709cac)] +- Cleanup nop behaviour from breakList [Tiberiu Ichim - [`130ccd6`](https://github.com/eea/volto-slate/commit/130ccd61b803fd60bfb66a5cd30dac8972b83563)] +- Cleanup [Tiberiu Ichim - [`306fb31`](https://github.com/eea/volto-slate/commit/306fb31089f283a9402a12eaa570838f17abb71e)] +- Reimplement indent list item [Tiberiu Ichim - [`2d18b0a`](https://github.com/eea/volto-slate/commit/2d18b0a730fe161847f0730ef615b242bc5cd995)] +- WIP on html paste handling [Tiberiu Ichim - [`08584aa`](https://github.com/eea/volto-slate/commit/08584aa84a59319fb6249334e1adbc8085f61b2d)] +- WIP on html paste handling [Tiberiu Ichim - [`9fc4046`](https://github.com/eea/volto-slate/commit/9fc404691b7754e7544fbb7e18120f5717bccece)] +- WIP on html paste handling [Tiberiu Ichim - [`5c0cc8d`](https://github.com/eea/volto-slate/commit/5c0cc8da1c155d2e287547e02eccdf7a05bbfdcc)] +- Rename element link to a [Tiberiu Ichim - [`d83ab78`](https://github.com/eea/volto-slate/commit/d83ab7850eb465fa2447937fdf147c02942621e9)] +- WIP on html paste handling [Tiberiu Ichim - [`516c7ff`](https://github.com/eea/volto-slate/commit/516c7ff9046772f07ce1e2f0229fed4dc0994a24)] +- Added image upload dropzone [Tiberiu Ichim - [`1c5d750`](https://github.com/eea/volto-slate/commit/1c5d750d334c35b4efbaab51d31905216eeff17f)] +- Cleanup console logging, add some comments about list splitting [Tiberiu Ichim - [`1710b35`](https://github.com/eea/volto-slate/commit/1710b359176ef5fac1895ebef1ad0f1c101565fe)] +- Improve break in lists [Tiberiu Ichim - [`571cf46`](https://github.com/eea/volto-slate/commit/571cf4679f94102b9fed2e9c0af87eb3dc5d757e)] +- Improve indent list item [Tiberiu Ichim - [`8c5c770`](https://github.com/eea/volto-slate/commit/8c5c7709c589b24a2769895c3562637b27d039c8)] +- Improve move up/down list items [Tiberiu Ichim - [`6dcf5c1`](https://github.com/eea/volto-slate/commit/6dcf5c1d5368f93e07f061cf87f5ed54a05588e5)] +- Improve handling of enter key in lists [Tiberiu Ichim - [`38bd2b3`](https://github.com/eea/volto-slate/commit/38bd2b3e0507e218eaa027ae590ed9ada1beb2ce)] +- Improve handling of enter key [Tiberiu Ichim - [`f8d7263`](https://github.com/eea/volto-slate/commit/f8d7263ee24fc5c386ec4b579e518d1ad10df787)] +- WIP on list indenting [Tiberiu Ichim - [`a1cd053`](https://github.com/eea/volto-slate/commit/a1cd05350d1dd0b7db2b0ba8b9698034d87eb23d)] +- WIP on list indenting [Tiberiu Ichim - [`b7919e2`](https://github.com/eea/volto-slate/commit/b7919e2ad2862e45730680d8f92e9bb37b1b9a28)] +- Fix a problem with unindenting list items [Tiberiu Ichim - [`0fa7591`](https://github.com/eea/volto-slate/commit/0fa759193b38da0cf353119da29b9e969bacc2f7)] +- Unindent list item as separate block [Tiberiu Ichim - [`c0ca841`](https://github.com/eea/volto-slate/commit/c0ca84143b5520a4748428399d9f126364f28092)] +- Solve problem with merging empty block with list [Tiberiu Ichim - [`ffd4b3f`](https://github.com/eea/volto-slate/commit/ffd4b3f38b41b1091b4949ac2bb532c7fba4a400)] +- Don't overdo block merging, code is easier to understand this way [Tiberiu Ichim - [`cc69692`](https://github.com/eea/volto-slate/commit/cc69692db45f935cb3844dfc45d83920195c2c38)] +- Try to solve problem when backspace in empty block [Tiberiu Ichim - [`0029b1f`](https://github.com/eea/volto-slate/commit/0029b1ff1192feb2c02a638eb351922393d0512c)] +- Use nanoid in footnote [Tiberiu Ichim - [`264e920`](https://github.com/eea/volto-slate/commit/264e920ce6b79a077172c5a9be87e22cc436f04b)] +- Fix isCursorAtBlockStart [Tiberiu Ichim - [`677d6fe`](https://github.com/eea/volto-slate/commit/677d6fe61511af6cd5b1945f27928d8e9cb9917b)] +- Improve backspace in lists [Tiberiu Ichim - [`17a5112`](https://github.com/eea/volto-slate/commit/17a511204b0896e4eca66f5db19decd3c1efda12)] +- Fix API for key handling [Tiberiu Ichim - [`4b9dbda`](https://github.com/eea/volto-slate/commit/4b9dbda25e3abbe261da6988960d0e8f3a001e58)] +- Improve break in lists [Tiberiu Ichim - [`e7d83a5`](https://github.com/eea/volto-slate/commit/e7d83a567de65fc17ad80a5766370c7d87f2fd31)] +- WIP on insert break in list item [Tiberiu Ichim - [`462111e`](https://github.com/eea/volto-slate/commit/462111eaefcfcdf2e335f50249078fe0e2c36e05)] +- Fix indenting list item [Tiberiu Ichim - [`fd6320c`](https://github.com/eea/volto-slate/commit/fd6320cbdcdfe3f62267164994e9d4acd49f81c9)] +- WIP [Tiberiu Ichim - [`e35bcfb`](https://github.com/eea/volto-slate/commit/e35bcfba4780cb80016924bb0ea9e79182ad9611)] +- WIP [Tiberiu Ichim - [`4bea9dc`](https://github.com/eea/volto-slate/commit/4bea9dc64b296e6b25acbf337175a9d8803ff834)] +- Renamed elements to their HTML tags [Tiberiu Ichim - [`0471b7f`](https://github.com/eea/volto-slate/commit/0471b7fab30dfc45a566bb5d8e0a8b4a89b461d0)] +- Add missing files [Tiberiu Ichim - [`103552e`](https://github.com/eea/volto-slate/commit/103552e08f2da8aa41c36d4d41bd4faf7f7b2414)] +- Introduce nanoid for list elements [Tiberiu Ichim - [`8950c70`](https://github.com/eea/volto-slate/commit/8950c70008e924137da312af08f6be55ba02fba4)] +- Fix a problem with indenting children [Tiberiu Ichim - [`e56163e`](https://github.com/eea/volto-slate/commit/e56163ea97a4e8c71cdea51a70d2a5bdec309109)] +- Improve sublists [Tiberiu Ichim - [`c471d47`](https://github.com/eea/volto-slate/commit/c471d478ace73a84fef7ff9c8793774e5cc0ffa5)] +- Improve sublists [Tiberiu Ichim - [`14659ca`](https://github.com/eea/volto-slate/commit/14659ca1e2d9480fbd21566a47035553318b8c73)] +- Fix but in handling soft return [Tiberiu Ichim - [`2afc0dd`](https://github.com/eea/volto-slate/commit/2afc0dd3192c0dec1090a975d678866e001001a7)] +- Added WIP on tab plugin [Tiberiu Ichim - [`c6f1996`](https://github.com/eea/volto-slate/commit/c6f1996d6e1d37862621bd40f081e8c9c07805cd)] +- Fix traversing blocks [Tiberiu Ichim - [`29eac48`](https://github.com/eea/volto-slate/commit/29eac4848b5b1731d7c9041f2bf456433ed38106)] +- Better traversing of slate blocks with up/down [Tiberiu Ichim - [`f2e954d`](https://github.com/eea/volto-slate/commit/f2e954d9d03a07321620f79452fdfab89e2d63d5)] +- Make softbreak work also in view [Tiberiu Ichim - [`27e47a3`](https://github.com/eea/volto-slate/commit/27e47a3e7f063b0219947ce86ef36b6bf36e717f)] +- Move list items with ctrl key [Tiberiu Ichim - [`fea8c5f`](https://github.com/eea/volto-slate/commit/fea8c5f8560210eaa10ffa07b2121437ab5a0191)] +- Fix isCursorAtBlockStart [Tiberiu Ichim - [`e7f811c`](https://github.com/eea/volto-slate/commit/e7f811c69af397560c8aaaedf4fa654ef0ed71b1)] +- WIP [Tiberiu Ichim - [`319d16c`](https://github.com/eea/volto-slate/commit/319d16c1d2191eb735d6a66aaa853579cf3d8868)] +- Renamed method to deconstruct [Tiberiu Ichim - [`79d7d7f`](https://github.com/eea/volto-slate/commit/79d7d7f785342bfedcfa22c32ba33dea49e78693)] +- Improve a bit the block button [Tiberiu Ichim - [`bfca5a7`](https://github.com/eea/volto-slate/commit/bfca5a7181c633c28ca05e28e7e2e5ca65748340)] +- Improve a bit the block button [Tiberiu Ichim - [`349977f`](https://github.com/eea/volto-slate/commit/349977fcfcf0a1ffe8b51cc82ba50142436295c6)] +- Added missing utils folder [Tiberiu Ichim - [`7c544a7`](https://github.com/eea/volto-slate/commit/7c544a7de44f1c990a296df2d1d76240b4dea6b5)] +- Make basic join block work properly [Tiberiu Ichim - [`6818ddc`](https://github.com/eea/volto-slate/commit/6818ddc81a70e27ac17c6dabe61b4fdc488afba9)] +- Use 5-character random footnote UID strings [Silviu Bogan - [`3f62f7f`](https://github.com/eea/volto-slate/commit/3f62f7f471839dcb42e6043a385be60bc2300003)] +- WIP [Tiberiu Ichim - [`b381d6e`](https://github.com/eea/volto-slate/commit/b381d6eef9834e0069f830375288565d4bfbdd7d)] +- Update README.md [Tiberiu Ichim - [`fa9d707`](https://github.com/eea/volto-slate/commit/fa9d7078244ad2e517b22575d894119dad585cf1)] +- Update README.md [Tiberiu Ichim - [`3eeb9f8`](https://github.com/eea/volto-slate/commit/3eeb9f89417fc90d94c1ac925a877d5690fa65a9)] +- Update README.md [Tiberiu Ichim - [`ea2c268`](https://github.com/eea/volto-slate/commit/ea2c26828c96d3d5cb60c12fb2cd685e5a729375)] +- Added traverseBlocks [Tiberiu Ichim - [`8ae98b7`](https://github.com/eea/volto-slate/commit/8ae98b7c72650be9bbc9da32de5adf57c4ce4930)] +- Renamed softBreak [Tiberiu Ichim - [`4069134`](https://github.com/eea/volto-slate/commit/4069134fa548a89e10524dfb8f7581a61104864b)] +- Renamed keyboard subpackage [Tiberiu Ichim - [`50f4ba9`](https://github.com/eea/volto-slate/commit/50f4ba9c8c1a08fb55075d0f6d1f78f10ef0f597)] +- Solve problem with extensions effect [Tiberiu Ichim - [`6c9ae18`](https://github.com/eea/volto-slate/commit/6c9ae18f020cf829d304ba4099ba37485bba0997)] +- New: soft break with Shift-Enter [Silviu Bogan - [`c375f8b`](https://github.com/eea/volto-slate/commit/c375f8bdf1389cc2ff473032c70f6e9fd7660a3e)] +- Undo some not working code + remove some dead code [Silviu Bogan - [`cba618c`](https://github.com/eea/volto-slate/commit/cba618c9c6801043d9ff438616232e7327e301c4)] +- Use UUIDs for footnotes [Silviu Bogan - [`a12033f`](https://github.com/eea/volto-slate/commit/a12033f15be75c9c499b20d58829f9e0101b9f6e)] +- Refactored SlateEditor as component [Tiberiu Ichim - [`38fdf3b`](https://github.com/eea/volto-slate/commit/38fdf3bda9e2e8794c8941a6919dab8ffcc3f948)] +- Renamed setSlateBlockSelection to saveSlateBlockSelection [Tiberiu Ichim - [`c3b5715`](https://github.com/eea/volto-slate/commit/c3b571513f00e34867e2cd66605afdc01f6b0dea)] +- WIP [Tiberiu Ichim - [`aae3e18`](https://github.com/eea/volto-slate/commit/aae3e18b83ad9282329c4cfc02a8c61f4828ce27)] +- WIP [Tiberiu Ichim - [`aa7c655`](https://github.com/eea/volto-slate/commit/aa7c655f05ee709406e09744e9b514ffb139cae2)] +- WIP [Tiberiu Ichim - [`09f16a1`](https://github.com/eea/volto-slate/commit/09f16a1e5d07e345cc62c59a9c6f73d2daea47a6)] +- WIP [Tiberiu Ichim - [`0f3b08a`](https://github.com/eea/volto-slate/commit/0f3b08a1c5e3266913340ebf6af4e76863d2c548)] +- Small cleanup [Silviu Bogan - [`68dec47`](https://github.com/eea/volto-slate/commit/68dec47a26dad91f7d73726d1261b761b9ed76b0)] +- WIP [Tiberiu Ichim - [`a6c9726`](https://github.com/eea/volto-slate/commit/a6c97263b078b68bff68acc2106e36a80deaa1e2)] +- Moved more code into withTestingFeatures.jsx [Silviu Bogan - [`38635d9`](https://github.com/eea/volto-slate/commit/38635d90f2c43f9b8df31017c979fbd377c8149a)] +- Renamed editorPlugin => extension [Tiberiu Ichim - [`ef2b193`](https://github.com/eea/volto-slate/commit/ef2b19351cb349696e32e57ca6f9cea1d2a5f93e)] +- Move stuff to editorPlugins from editor [Tiberiu Ichim - [`028b6d6`](https://github.com/eea/volto-slate/commit/028b6d61dd84a544882814bb3d354c8adcdc63b6)] +- Fix counter reset problem [Tiberiu Ichim - [`eaa86fa`](https://github.com/eea/volto-slate/commit/eaa86fa63b0511689828ae94bf612f0d4cd7a75e)] +- Tweak styling [Tiberiu Ichim - [`cfdfa7f`](https://github.com/eea/volto-slate/commit/cfdfa7ff9c41bc6169ba7941188e8d2f82a3e1ea)] +- Added a TODO [Tiberiu Ichim - [`3b3a097`](https://github.com/eea/volto-slate/commit/3b3a0979a13a3c168ba343ccdf6b77c479b1437b)] +- Fix button [Tiberiu Ichim - [`c8058de`](https://github.com/eea/volto-slate/commit/c8058de9cc80f7328ea3d6985c76705f4618dfc8)] +- Added decorate highlight [Tiberiu Ichim - [`6d379a2`](https://github.com/eea/volto-slate/commit/6d379a28ec95a8d7abc7159c75c825b8092a2f3e)] +- Added decorate highlight [Tiberiu Ichim - [`70da7cb`](https://github.com/eea/volto-slate/commit/70da7cb1fa5b5e2265b0cd51d697917e55bddea5)] +- Read form data from editor data [Tiberiu Ichim - [`f06e24e`](https://github.com/eea/volto-slate/commit/f06e24eace134e715d34ca82531d77839e1c2e08)] +- WIP on making footnote form read data [Tiberiu Ichim - [`10e0888`](https://github.com/eea/volto-slate/commit/10e08883f6aa7ec36cdc3b0909b0a2a6d2ad8765)] +- Added backlink to initial reference [Tiberiu Ichim - [`c4c5933`](https://github.com/eea/volto-slate/commit/c4c59333e874be0024de7bdf93ee2735d0cfa3a3)] +- Added title field for the footnotes listing block [Tiberiu Ichim - [`317c028`](https://github.com/eea/volto-slate/commit/317c02891681865119084124486219b0f8f87361)] +- WIP on footnote block [Tiberiu Ichim - [`9d6df25`](https://github.com/eea/volto-slate/commit/9d6df259dae2f50f2329ec26e29560423b7285a1)] +- WIP on footnote plugin [Tiberiu Ichim - [`7cfb3c8`](https://github.com/eea/volto-slate/commit/7cfb3c89f15ce2eea5fef0ed27bf65a2034469a9)] +- WIP on footnote plugin [Tiberiu Ichim - [`bea9549`](https://github.com/eea/volto-slate/commit/bea9549803ce487fb6176ca54493a395e001bee3)] +- Cleanup less file [Tiberiu Ichim - [`2b5c8f5`](https://github.com/eea/volto-slate/commit/2b5c8f51e1ea2137cf07dec8e759352ccb94c74b)] +- Simplify code, added TODO on Links plugin [Tiberiu Ichim - [`9886cb6`](https://github.com/eea/volto-slate/commit/9886cb61cfb0207236fea6cc371b7967cad361ab)] +- Simplify, refactor the way slate blocks are rendered in view [Tiberiu Ichim - [`3ceb7cc`](https://github.com/eea/volto-slate/commit/3ceb7ccdd79d439de2176ad3f9eed1f0692767d6)] +- Removed hotkeys, remove nops [Tiberiu Ichim - [`ef3297f`](https://github.com/eea/volto-slate/commit/ef3297f022a371e5d57f50105a9decc562817f8a)] +- A small change to work with modern_kitchen_sink through yalc [Silviu Bogan - [`63d39b0`](https://github.com/eea/volto-slate/commit/63d39b0e73e28d93d993c8b4c704a1202f520613)] +- A small bit of refactoring [Silviu Bogan - [`c6794df`](https://github.com/eea/volto-slate/commit/c6794df5cb27e84f34a4a96e3c2abe7875cb2881)] +- Improved logic for: selection is on the last list item in a list [Silviu Bogan - [`7e60509`](https://github.com/eea/volto-slate/commit/7e6050953be387f2456d54e9623a9af634c5b7e1)] +- Cleanup and small refactoring [Silviu Bogan - [`db1934c`](https://github.com/eea/volto-slate/commit/db1934c6929a1b8f556a962236b03a3da67edf56)] +- Another bit of refactoring [Silviu Bogan - [`da534af`](https://github.com/eea/volto-slate/commit/da534af77518ad91de3169be0e89a1a833dec869)] +- A very little bit of refactoring [Silviu Bogan - [`fe5c87e`](https://github.com/eea/volto-slate/commit/fe5c87e4c090140f6d6867024d3a906ff6a937ec)] +- Solved issue: split block, new block empty but with formatting [Silviu Bogan - [`50714fb`](https://github.com/eea/volto-slate/commit/50714fbfbbe08626c63f88e5f16bdda801afd1d9)] +- Solved bug with bold and heading [Silviu Bogan - [`0093f03`](https://github.com/eea/volto-slate/commit/0093f03a6321b0f16e63beddd5fcc50610be8ba9)] +- Corrected toolbar positioning [Silviu Bogan - [`a54bc21`](https://github.com/eea/volto-slate/commit/a54bc21ebbf9bcee19bbbd43a73ba533abeed28d)] +- Cleanup + new HOC for tests: withTestingFeatures [Silviu Bogan - [`1e6dca5`](https://github.com/eea/volto-slate/commit/1e6dca53198c4948bea5e15e090493b99c8db443)] +- For toolbars started using div instead of Menu [Silviu Bogan - [`45f5aaf`](https://github.com/eea/volto-slate/commit/45f5aafe0b06557ed27550d22e866837c81f9adf)] +- Improve toolbar box-shadow [Silviu Bogan - [`e3c91db`](https://github.com/eea/volto-slate/commit/e3c91dbb44f0a0e13349dc565b984deb9a942af6)] +- Improve toolbar box-shadow to be like draft toolbar [Silviu Bogan - [`426ee61`](https://github.com/eea/volto-slate/commit/426ee612d34eac8af59fcf2b715a8109ee52dd0e)] +- Improved toolbar styling to be like in draft blocks [Silviu Bogan - [`560c946`](https://github.com/eea/volto-slate/commit/560c946ba7b08f450c64ca4fcb973a0e6f585bff)] +- Refactored SlateToolbar [Tiberiu Ichim - [`7ec37ea`](https://github.com/eea/volto-slate/commit/7ec37ea64446e596e7a65f1379a3b4672c35d2cd)] +- Some refactoring, moving stuff around [Tiberiu Ichim - [`cba7de1`](https://github.com/eea/volto-slate/commit/cba7de19b0be29949b59166a0de9b57765c476d8)] +- Small cleanup [Tiberiu Ichim - [`dadd922`](https://github.com/eea/volto-slate/commit/dadd922f2882f8b893a58c8b069d3fa825191d09)] +- Work on toolbar style [Silviu Bogan - [`2bcf341`](https://github.com/eea/volto-slate/commit/2bcf341a9f33e03b5ec8b0c9fa348fdd7208f850)] +- Cleanup, comments and style improvements [Silviu Bogan - [`484ce49`](https://github.com/eea/volto-slate/commit/484ce496b2fbcc49bfb57911d1f9481193ed46a7)] +- WIP [Tiberiu Ichim - [`4405c5e`](https://github.com/eea/volto-slate/commit/4405c5e66d017df3da9770e9500cccfdcd10f256)] +- Reorganize folder structure [Tiberiu Ichim - [`8d4a2a8`](https://github.com/eea/volto-slate/commit/8d4a2a86ba589df77fb659baf4f9a30c81482e1d)] +- Implement pipeline [valentinab25 - [`0a4e21b`](https://github.com/eea/volto-slate/commit/0a4e21b7b3ac21146856352c551eec176f8f2807)] +- Fix rendering of leafs [Tiberiu Ichim - [`8c2f5ee`](https://github.com/eea/volto-slate/commit/8c2f5ee89988d985f226f4d6393c7d5ee174fb81)] +- Get rid of leafTypes [Tiberiu Ichim - [`365611c`](https://github.com/eea/volto-slate/commit/365611cc6132715280137753f399a6727759f6da)] +- Improve styling of shortcuts block; restructured elements definitions [Tiberiu Ichim - [`e78caa9`](https://github.com/eea/volto-slate/commit/e78caa99e8f2da037020548b24c8d136a1462107)] +- Move default element renderers to settings.slate.elementRenderers [Tiberiu Ichim - [`8e5a38c`](https://github.com/eea/volto-slate/commit/8e5a38c23d8593198d925b3996143798f99fdab4)] +- Refactored a bit leafs rendering [Tiberiu Ichim - [`979d7f6`](https://github.com/eea/volto-slate/commit/979d7f60dd9c9a4511d99943316d37dd44da2f4e)] +- Added separator before expand toolbar button [Tiberiu Ichim - [`6667d4a`](https://github.com/eea/volto-slate/commit/6667d4a9d5d40f57d11ffb2f6a929575c014dd0d)] +- Improve separator styling [Tiberiu Ichim - [`bffcceb`](https://github.com/eea/volto-slate/commit/bffccebd25581886cc9aa69bd68f638107e61434)] +- Improve styling [Tiberiu Ichim - [`bcd270d`](https://github.com/eea/volto-slate/commit/bcd270db3765c0dd839e2fe036c370f09ddefe7c)] +- Solved some bugs and code smells [Silviu Bogan - [`91ef448`](https://github.com/eea/volto-slate/commit/91ef4485f294b9d9701d29de843fb1a05e679a12)] +- Improve styling [Tiberiu Ichim - [`b5f6b54`](https://github.com/eea/volto-slate/commit/b5f6b540d08ff77a9c8255540205410ecf7dbe36)] +- Fix README images [Tiberiu Ichim - [`defceab`](https://github.com/eea/volto-slate/commit/defceab13eeffbdd137ad80430504737488365bd)] +- Fix README images [Tiberiu Ichim - [`7ffdc71`](https://github.com/eea/volto-slate/commit/7ffdc717325dab50dda20ba2ac56aa711d969af4)] +- Removed .eslintrc.json temporary [Silviu Bogan - [`da3590b`](https://github.com/eea/volto-slate/commit/da3590bea266aadb6a06db41efb2c1aeef97fd30)] +- Fix styling [Tiberiu Ichim - [`de23bb5`](https://github.com/eea/volto-slate/commit/de23bb539b7045e95743ca8951eb6b9cdf4408d7)] +- Used 'yarn run lint' on all the files [Silviu Bogan - [`e47a295`](https://github.com/eea/volto-slate/commit/e47a295801f54b496b3364cec608be1a82e6caf9)] +- Used ESLint on all the files [Silviu Bogan - [`a718cd6`](https://github.com/eea/volto-slate/commit/a718cd64ad97ec6406fa21c95327141e597a05d3)] +- Use Prettier for all the files in volto-slate [Silviu Bogan - [`88dc8ac`](https://github.com/eea/volto-slate/commit/88dc8acd3d3e5a4a6c819d8339d1d9cb14533b4d)] +- Working unit tests and updated snapshots [Silviu Bogan - [`35b8b2e`](https://github.com/eea/volto-slate/commit/35b8b2e73d68a959b83763c35ce930f99bc85bda)] +- WIP on documentation [Tiberiu Ichim - [`1558cbe`](https://github.com/eea/volto-slate/commit/1558cbedd94bee92ac5f5fc26f384329d4c8cbbc)] +- Temporarily disabled Image plugin and related code [Silviu Bogan - [`578ce21`](https://github.com/eea/volto-slate/commit/578ce2183023ee1ec1ddf82e3665c143b3a3a8b6)] +- Improved image rendering + attempt to solve server side rendering issue [Silviu Bogan - [`4017ab4`](https://github.com/eea/volto-slate/commit/4017ab4828a7ac4ad328d8e4caec7a7ed265173e)] +- Basic image file or image URL paste [Silviu Bogan - [`2c07af0`](https://github.com/eea/volto-slate/commit/2c07af04d1e77d10eb85bb08f84f5a75e340e90c)] +- Removed a comment [Silviu Bogan - [`424d41e`](https://github.com/eea/volto-slate/commit/424d41eab5f413135a831c947eaa256f5b01c5f2)] +- A little cleanup [Silviu Bogan - [`ff433f1`](https://github.com/eea/volto-slate/commit/ff433f11bc7de2cbda0558a3f810c8704c166c39)] +- Strikethrough toolbar button, HTML rich paste [Silviu Bogan - [`36e977d`](https://github.com/eea/volto-slate/commit/36e977d2717668bc1381b8cf258f0b80000dd65e)] +- Removed 2 commented-out lines [Silviu Bogan - [`d9aec4f`](https://github.com/eea/volto-slate/commit/d9aec4fe1f2e06fc22e8d5073b00a7e6bcff2b7b)] +- Removed small piece of duplicate code [Silviu Bogan - [`fc93ba3`](https://github.com/eea/volto-slate/commit/fc93ba3a9656c9c4577d7b4b650cfd5efbb2be36)] +- Cleanup + solved compile errors from previous commit [Silviu Bogan - [`cf6ad99`](https://github.com/eea/volto-slate/commit/cf6ad9964eebaee6f681d17e438cc2bd953ec335)] +- Cleanup and a little refactoring [Silviu Bogan - [`dac8152`](https://github.com/eea/volto-slate/commit/dac8152e1ccbac23c96b7a6317a2d192a1b9663d)] +- Images in README.md stored in /docs/images [Silviu Bogan - [`61c92bf`](https://github.com/eea/volto-slate/commit/61c92bfdeb4cda9fbbb0dd326469017187553983)] +- Added numbers to features in README.md [Silviu Bogan - [`8c92e86`](https://github.com/eea/volto-slate/commit/8c92e864214a13018a5a1f88f578e2c3cd8219af)] +- Work on switching between Slate block types [Silviu Bogan - [`75109ef`](https://github.com/eea/volto-slate/commit/75109efd26cecc7839e9de707481d0eda11b8409)] +- More work on switching from one block type to another [Silviu Bogan - [`bb4ee38`](https://github.com/eea/volto-slate/commit/bb4ee38cd86f15469051e0e68fb7b976aa0867c2)] +- Start to solve many issues related to list toggling (WIP) [Silviu Bogan - [`7031d7d`](https://github.com/eea/volto-slate/commit/7031d7d25ff56090895f0edafec4486baf2433f5)] +- Replaced Callout plugin with BlockQuote [Silviu Bogan - [`4962655`](https://github.com/eea/volto-slate/commit/49626558d07db190dd5f09aa343877b3e2dba5eb)] +- Small style improvement for ToolbarButton [Silviu Bogan - [`25669de`](https://github.com/eea/volto-slate/commit/25669de9cb470f263ddf3a6d1ba44ca207dea927)] +- Improve styling of inline toolbar [Silviu Bogan - [`79e88d4`](https://github.com/eea/volto-slate/commit/79e88d414e0bb215a182bdac72bd9373f655f06c)] +- Rename Button to ToolbarButton, improve style [Silviu Bogan - [`6f0efea`](https://github.com/eea/volto-slate/commit/6f0efea3121b40f95e9718bb3c71e57b8757da9b)] +- More work on toolbar styling [Silviu Bogan - [`d37142b`](https://github.com/eea/volto-slate/commit/d37142b7192555777b4d9c5279256acd0571cfe7)] +- Improved styling + solved issue when going from list to heading [Silviu Bogan - [`ff70df8`](https://github.com/eea/volto-slate/commit/ff70df8b2216bbf8c39d179b3a8ac8f80329427a)] +- Small update to README.md [Silviu Bogan - [`aca7083`](https://github.com/eea/volto-slate/commit/aca7083498ecd73b3a514c77952fd8f5f519dc09)] +- Big update to README.md [Silviu Bogan - [`f6c0dc8`](https://github.com/eea/volto-slate/commit/f6c0dc8adca69e73108b64c8a1461f640ec0aa4f)] +- More cleanup [Silviu Bogan - [`395c762`](https://github.com/eea/volto-slate/commit/395c76289a4aeb9c9c9c433892b8295c9977a1bf)] +- Cleanup [Silviu Bogan - [`5ceeb13`](https://github.com/eea/volto-slate/commit/5ceeb13cd2f6fa322c2b33848192531294935dc4)] +- (Shift-)Tab handling works well [Silviu Bogan - [`71cbbfb`](https://github.com/eea/volto-slate/commit/71cbbfbad9a6fb150979c28e4815f92304fdb28a)] +- Backspace, lists and markdown work better [Silviu Bogan - [`1dc9be7`](https://github.com/eea/volto-slate/commit/1dc9be703e5d5a75c6b4f33d7f6ddf985c341de9)] +- Improved list functionality + cleanup [Silviu Bogan - [`09491ba`](https://github.com/eea/volto-slate/commit/09491ba211962721340e7ed508d553bb61e5063f)] +- Converting list to paragraph, list splitting w/ 1 issue [Silviu Bogan - [`5547066`](https://github.com/eea/volto-slate/commit/554706659ee87cde68674c499eda1d2833e9f8b0)] +- Use code from slate-plugins for the lists (WIP) [Silviu Bogan - [`806ccc6`](https://github.com/eea/volto-slate/commit/806ccc6b9c5d916f385cdffdf29e7f116805fbeb)] +- Added README.md [Silviu Bogan - [`cca58d0`](https://github.com/eea/volto-slate/commit/cca58d07361861a1b064cbeba81ad604e1facf5a)] +- Remove links with toolbar button [Silviu Bogan - [`300af73`](https://github.com/eea/volto-slate/commit/300af73bf713be53ab7a526afa246c716ab12980)] +- Work on Backspace behavior at start of second Slate block [Silviu Bogan - [`268c982`](https://github.com/eea/volto-slate/commit/268c982c02fc5f018b7585d344b086d028d24c32)] +- Work on splitting lists with Enter on empty list-item [Silviu Bogan - [`73771eb`](https://github.com/eea/volto-slate/commit/73771ebb4ef64be97e31c9bae58d1c8632d5d3c4)] +- Tab and Shift-Tab work better in deep lists [Silviu Bogan - [`34fee74`](https://github.com/eea/volto-slate/commit/34fee7493f9238e28fd01e0913bae00050c2d25c)] +- Work on flexible deep lists [Silviu Bogan - [`a9dcd1e`](https://github.com/eea/volto-slate/commit/a9dcd1e0af47fcc8fe1d5bb5df63dcfd2b8544f7)] +- Fix a bug in default block drag handler display [Tiberiu Ichim - [`fde3600`](https://github.com/eea/volto-slate/commit/fde3600e1bbbe8d25b1899fb77029a23c5f64589)] +- Enable the block chooser [Tiberiu Ichim - [`5f52744`](https://github.com/eea/volto-slate/commit/5f5274439ec255b8715a19368733ec13a039e73c)] +- Added blockHasValue implementation for slate block [Tiberiu Ichim - [`9df50e8`](https://github.com/eea/volto-slate/commit/9df50e81c97d7c448679644a505eb0d6668d36ec)] +- Small cleanup [Tiberiu Ichim - [`21287ee`](https://github.com/eea/volto-slate/commit/21287ee73f2fcc56527d49cbb55066be3861f894)] +- Improve Tab handling for deep lists, remove package-lock.json [Silviu Bogan - [`d0b68fc`](https://github.com/eea/volto-slate/commit/d0b68fc4aa4705f4d61cafb6155810f4be35cbc4)] +- Work on Tab key handling [Silviu Bogan - [`4259fdf`](https://github.com/eea/volto-slate/commit/4259fdffcc0cd4dd44e6eccaec637bec89a84d93)] +- Solved a bug when editor.selection is null [Silviu Bogan - [`faea4f8`](https://github.com/eea/volto-slate/commit/faea4f8d2616653710b4dba4826b22d461e681b6)] +- More refactoring [Silviu Bogan - [`d8a0f4c`](https://github.com/eea/volto-slate/commit/d8a0f4c6862cd6ba9cd8f0a991f1c360fef41135)] +- Started a little refactoring [Silviu Bogan - [`c8ffb70`](https://github.com/eea/volto-slate/commit/c8ffb704d9ff6d41cc1bbea5e428eb8bd65a6596)] +- A little bit of cleanup [Silviu Bogan - [`c03c1f1`](https://github.com/eea/volto-slate/commit/c03c1f1d10f4d034b3d3094fad6dc24178b44f03)] +- Refactoring + cleanup [Silviu Bogan - [`a4bf241`](https://github.com/eea/volto-slate/commit/a4bf24113942554c965b581e980f6c2e2a89604e)] +- Solve issue: user types on the right of the text cursor [Silviu Bogan - [`1cbaecb`](https://github.com/eea/volto-slate/commit/1cbaecb31d992d2684545cbaec582e0d268c960d)] +- Show 2nd tab in right pane when selecting a Slate block [Silviu Bogan - [`da7628c`](https://github.com/eea/volto-slate/commit/da7628c6b635514dbf2fb3ccee4836cbdc035933)] +- WIP on addon loading [Tiberiu Ichim - [`2015865`](https://github.com/eea/volto-slate/commit/2015865894134cc6f1253a1f490eb6e57c891914)] +- Removed src/config.js [Tiberiu Ichim - [`a588fe6`](https://github.com/eea/volto-slate/commit/a588fe67b80ac04776a7d4a5649930ddc1e66136)] +- Handle some headers and block-quote in HTML serialization [Silviu Bogan - [`ee63803`](https://github.com/eea/volto-slate/commit/ee63803a43aa24f36fcda9d78c95b65d3da61620)] +- Almost done: serializing Slate to HTML for showing to end user [Silviu Bogan - [`1c280eb`](https://github.com/eea/volto-slate/commit/1c280ebe982c7f0dba451bdeb2c662764345abe2)] +- Work on serializing to HTML for showing to end user [Silviu Bogan - [`21aa7b5`](https://github.com/eea/volto-slate/commit/21aa7b50e9734aa5ae02edb49855804148ca0896)] +- Stop using appearantly unnecessary fixSelection hack [Silviu Bogan - [`807a715`](https://github.com/eea/volto-slate/commit/807a7152950d270cde162d1cf80d9776ee12424f)] +- More refactoring [Silviu Bogan - [`5f23461`](https://github.com/eea/volto-slate/commit/5f23461f6e4771a2476495bfe6c67e34122f4d38)] +- Refactoring in withHandleBreak decorator [Silviu Bogan - [`f8329ea`](https://github.com/eea/volto-slate/commit/f8329eae6aac6675a66d9416155ceff252dbf069)] +- Revert "Removed all unit tests" [Silviu Bogan - [`166fb5c`](https://github.com/eea/volto-slate/commit/166fb5c0b3c4bfb8379ad877a6b9f067351c35b8)] +- Removed all unit tests [Silviu Bogan - [`3ee85ba`](https://github.com/eea/volto-slate/commit/3ee85ba9f1a6f4073e182954e90df83e22e9fd85)] +- Updated withHandleBreak decorator so that all existing integration tests pass [Silviu Bogan - [`03ea032`](https://github.com/eea/volto-slate/commit/03ea032a9fd98136cff3038ed161bd19bd397efa)] +- Solved bug to pass test 3_spec [Silviu Bogan - [`2095e22`](https://github.com/eea/volto-slate/commit/2095e2203a188d6e6a5aafd5fc5a6fe65b2d08ed)] +- Avoid a bug in Slate that shows up only in Cypress context [Silviu Bogan - [`ea1d72b`](https://github.com/eea/volto-slate/commit/ea1d72b61b4f9266a2409e7436d3888edd03e5dc)] +- Custom event for selecting in Slate from Cypress test [Silviu Bogan - [`458cc54`](https://github.com/eea/volto-slate/commit/458cc54ab82e78535daed825ff0def732c6ab53c)] +- Small change for testing SlateEditor with Cypress [Silviu Bogan - [`9896f4c`](https://github.com/eea/volto-slate/commit/9896f4c7c30c2becfa6301608156a2e7474750cb)] +- Small change to make the tests work [Silviu Bogan - [`7077a0a`](https://github.com/eea/volto-slate/commit/7077a0aad00d3379de3967801e0ee79003530d1a)] +- Rename var [Tiberiu Ichim - [`7f0031a`](https://github.com/eea/volto-slate/commit/7f0031a45e2d1ad4c70db8b1b58f13f63ac13e53)] +- Don't break on enter in slate block [Tiberiu Ichim - [`348d62f`](https://github.com/eea/volto-slate/commit/348d62f8c4af3a9625d94abe4a28124a50a05e5d)] +- Redo reducer integration [Tiberiu Ichim - [`fa00609`](https://github.com/eea/volto-slate/commit/fa006093b07b4aef0194579debf87973877f2968)] +- Added selection reducer [Tiberiu Ichim - [`4b5d1ed`](https://github.com/eea/volto-slate/commit/4b5d1ed77e44e87f350dc7bb9f96e264f396f686)] +- Work in progress for unit tests [Silviu Bogan - [`c5e3d6e`](https://github.com/eea/volto-slate/commit/c5e3d6e50185957d8a1ac941c1accc0bc2acc155)] +- New unit test for the withHandleBreak decorator [Silviu Bogan - [`67f046a`](https://github.com/eea/volto-slate/commit/67f046aa7b76728cac23cd969430065d5c6d9fd4)] +- Work on unit tests [Silviu Bogan - [`35795ca`](https://github.com/eea/volto-slate/commit/35795cad7715b3bedb119e53008ead416755881d)] +- Upgrades to dependencies [Silviu Bogan - [`562bf79`](https://github.com/eea/volto-slate/commit/562bf792dd1b7918c78f7cf177c3bbe79312b65d)] +- Partially solved a bug [Silviu Bogan - [`cd72e3f`](https://github.com/eea/volto-slate/commit/cd72e3f63f1e946a87d3549424def2804108e233)] +- Cleanup + new TODO and FIXME comments [Silviu Bogan - [`2522c36`](https://github.com/eea/volto-slate/commit/2522c367a4e492ff77456b20595eac220843bc31)] +- Working withHandleBreak decorator for simple text [Silviu Bogan - [`48187c4`](https://github.com/eea/volto-slate/commit/48187c4920ae645d3123577b81ea159d18700427)] +- Solved a few bugs [Silviu Bogan - [`3d2e477`](https://github.com/eea/volto-slate/commit/3d2e4778c3f417f0873a2c75b1b8582ed4ba546b)] +- Refactoring, cleanup [Silviu Bogan - [`d42aa29`](https://github.com/eea/volto-slate/commit/d42aa29a9730dac2989697a5ca3afbd7acff82d9)] +- Small refactoring, work on unit test [Silviu Bogan - [`b3517d0`](https://github.com/eea/volto-slate/commit/b3517d08183022aa01859270cf1e6536ae679f31)] +- Work on Button unit test [Silviu Bogan - [`cbc3e10`](https://github.com/eea/volto-slate/commit/cbc3e102bbfde81074af0fa9bcc77aeaf5379c0e)] +- Started work on tests [Silviu Bogan - [`625af88`](https://github.com/eea/volto-slate/commit/625af88916303164b35050217fd3149b467adb8b)] +- Cleanup code [Tiberiu Ichim - [`0231f41`](https://github.com/eea/volto-slate/commit/0231f419773a5095798369adb7952a880e4d5923)] +- Switch isCursorAtBlockStart and isCursorAtBlockEnd implementations [Tiberiu Ichim - [`fdca1d7`](https://github.com/eea/volto-slate/commit/fdca1d78538a02fa95d6cd06f5268e88f5fe1193)] +### 0.1 - 17 June 2020 + +#### :hammer_and_wrench: Others + +- Extracted withHandleBreak default decorator [Silviu Bogan - [`9e4bcc5`](https://github.com/eea/volto-slate/commit/9e4bcc5449c6c876ae6eb96b13779fe652a1415a)] +- Removed some dead code [Silviu Bogan - [`788bab5`](https://github.com/eea/volto-slate/commit/788bab5376f7cf0de57b1a83321a9572fe8fabcf)] +- Work on Backspace handling [Silviu Bogan - [`d098480`](https://github.com/eea/volto-slate/commit/d0984805f51a260778175c6133b2267a69a063a5)] +- More work on list-item Backspace handling [Silviu Bogan - [`38d9d1e`](https://github.com/eea/volto-slate/commit/38d9d1ed1cbc316e0bf1b3ff972e526c37c7e98e)] +- Solve bug: both blocks are visible at the same time [Silviu Bogan - [`81b2516`](https://github.com/eea/volto-slate/commit/81b2516e46139b9c54d6866895165b7733c4deb4)] +- Removed component ToolbarToggleButton [Silviu Bogan - [`1b24eec`](https://github.com/eea/volto-slate/commit/1b24eec8eff198daadff3fc259c5837c5754f540)] +- Reverted unwanted change [Silviu Bogan - [`f8c428d`](https://github.com/eea/volto-slate/commit/f8c428d47c249e40cbe5ffbdee987c7084bc5450)] +- Solve bug: selection after Backspace editor merge is wrong [Silviu Bogan - [`af3f6d1`](https://github.com/eea/volto-slate/commit/af3f6d18ee7c8233201b3283e99c345ce2e7a60a)] +- More cleanup [Silviu Bogan - [`b2e698f`](https://github.com/eea/volto-slate/commit/b2e698f467b9c90ec4b9ca25661724cbd4aea1aa)] +- More cleanup [Silviu Bogan - [`ac4145b`](https://github.com/eea/volto-slate/commit/ac4145b40a546641c0fbada810ad389635e578a5)] +- Cleanup [Silviu Bogan - [`f1e872d`](https://github.com/eea/volto-slate/commit/f1e872d286718ee204f63aa1d6a8ed6ef7ef2f64)] +- Small fix [Tiberiu Ichim - [`681bacc`](https://github.com/eea/volto-slate/commit/681baccdffc9291f8556d1e6252fce9dd09cbe52)] +- Small refactoring [Tiberiu Ichim - [`d5842da`](https://github.com/eea/volto-slate/commit/d5842da970bef770e48077ec791d34a1c36dc6bc)] +- WIP on editor handling of backspace [Tiberiu Ichim - [`38967f0`](https://github.com/eea/volto-slate/commit/38967f09b564656f673b0822c1105a6b512bfb39)] +- Handle tab indenting for list items [Tiberiu Ichim - [`d35bf27`](https://github.com/eea/volto-slate/commit/d35bf2728aa6101fc8e87629601df965a1fd03c9)] +- Handle list items [Tiberiu Ichim - [`465de3f`](https://github.com/eea/volto-slate/commit/465de3fd0290f9921c120ce79844860e2f08ba65)] +- Improve handling of backspace key join blocks [Tiberiu Ichim - [`d3dac74`](https://github.com/eea/volto-slate/commit/d3dac743fa1a4eaae0013f9f39126cd8990d2ab9)] +- Improve handling of block if split [Tiberiu Ichim - [`fe487ea`](https://github.com/eea/volto-slate/commit/fe487ea13903414a4d7a795500d8fa8ca722a371)] +- Naive implementation of split block on enter key [Tiberiu Ichim - [`a900725`](https://github.com/eea/volto-slate/commit/a9007252ecebff391746fb98f0a63cce513cafaf)] +- Style change [Silviu Bogan - [`8942d9f`](https://github.com/eea/volto-slate/commit/8942d9f5e3660892cdad8f62c1af0e3dc9ff81e6)] +- Cleanup [Silviu Bogan - [`450379d`](https://github.com/eea/volto-slate/commit/450379da20c1c0b972e7d1916b534b233cc114a8)] +- Added small comment [Tiberiu Ichim - [`1fbc441`](https://github.com/eea/volto-slate/commit/1fbc441cb828bd91ddead6feddcbd4ae28855ef5)] +- Fix insert break in list behaviour [Tiberiu Ichim - [`e5c5f12`](https://github.com/eea/volto-slate/commit/e5c5f12b5ec6781f469c819900867dfd7c945f86)] +- Enter at last empty list element creates+selects the new block [Silviu Bogan - [`924a40e`](https://github.com/eea/volto-slate/commit/924a40edadb1d9c33b02bd77f0837986e338d30c)] +- Update test snapshot [Tiberiu Ichim - [`bb8cc5a`](https://github.com/eea/volto-slate/commit/bb8cc5a6b04244bfe95c312b443b8009faadf442)] +- Rework local deco integration [Tiberiu Ichim - [`11f7ef7`](https://github.com/eea/volto-slate/commit/11f7ef7f6cffe35245a1a4952c7fe5aa0f486ee4)] +- Use markdown plugin [Tiberiu Ichim - [`64c475b`](https://github.com/eea/volto-slate/commit/64c475b88120e54d29780c5e8c8af70bf56c48c4)] +- Not-working commit [Silviu Bogan - [`2aa16a9`](https://github.com/eea/volto-slate/commit/2aa16a93490e3292f1c9be732d6a30d6f6cc5d19)] +- Break list on empty Enter on the last item [Silviu Bogan - [`d8915e9`](https://github.com/eea/volto-slate/commit/d8915e9568749ae31af7b234408443f096cae1f3)] +- Walkaround to Slate bug [Silviu Bogan - [`578ef53`](https://github.com/eea/volto-slate/commit/578ef534622e681a29315bafdc96535441644404)] +- Break list on empty Enter, almost working [Silviu Bogan - [`006f307`](https://github.com/eea/volto-slate/commit/006f307d512a6bfb2edb0b5c9ed83b09c4e0abe3)] +- Move Link element to render module [Tiberiu Ichim - [`a35b61d`](https://github.com/eea/volto-slate/commit/a35b61d1abaccc2c9f50278300b37e5c54e05489)] +- Shift-Tab navigation between Slate blocks [Silviu Bogan - [`d2a6140`](https://github.com/eea/volto-slate/commit/d2a6140db1cb5559db78b2167e53aee4693f3e67)] +- Handle tab [Tiberiu Ichim - [`3fb1d85`](https://github.com/eea/volto-slate/commit/3fb1d8562f5ac27af73190432de00a06b8d2f816)] +- Cleanup code [Tiberiu Ichim - [`c1aff38`](https://github.com/eea/volto-slate/commit/c1aff3873b1dbd66b7a232a3d33a8ca4dbfe9f0c)] +- Work on ArrowDown handler, seems to be working [Silviu Bogan - [`df49b45`](https://github.com/eea/volto-slate/commit/df49b45849e8e8ad65945d123f26808cafce17fa)] +- WIP on slate down arrow handling [Tiberiu Ichim - [`d6c35fe`](https://github.com/eea/volto-slate/commit/d6c35fe9586de3d044f264af0dd70d5bb0110901)] +- Fix Plone service [Tiberiu Ichim - [`32ef70b`](https://github.com/eea/volto-slate/commit/32ef70ba3adc27c72a19cadf31ca9ffaa87c115f)] +- WIP [Tiberiu Ichim - [`3b4cc39`](https://github.com/eea/volto-slate/commit/3b4cc39c5e179169ec15acd937fba2e8d16212aa)] +- Move deleteBackward behaviour to default editor [Tiberiu Ichim - [`daf07d0`](https://github.com/eea/volto-slate/commit/daf07d007b282ce5b0a2dfb94e208cae071f2e98)] +- Added markdown plugin [Tiberiu Ichim - [`180e4ab`](https://github.com/eea/volto-slate/commit/180e4abf5eab6038e14fee28c2d518e6aad1fc47)] +- Up arrow key focuses the previous block [Silviu Bogan - [`6053f45`](https://github.com/eea/volto-slate/commit/6053f45c74123a72a51f6594eb9302e3e828cdde)] +- Stop propagation of arrow keys [Tiberiu Ichim - [`7090139`](https://github.com/eea/volto-slate/commit/70901398a1526d2e8f81188f43b13efdb8cc772b)] +- Handle Enter in slate [Tiberiu Ichim - [`cd221ff`](https://github.com/eea/volto-slate/commit/cd221ff4fa5442521dcd31d22f799eabff9e93db)] +- Extracted ShortcutListing into separate .jsx file [Silviu Bogan - [`33ff7b2`](https://github.com/eea/volto-slate/commit/33ff7b21777c119b241dc7885097ad1c99e41f80)] +- Improve toolbar look [Tiberiu Ichim - [`cfe88d6`](https://github.com/eea/volto-slate/commit/cfe88d62cb6516c3eba5f388dbfb522dadae3003)] +- Save data with link [Tiberiu Ichim - [`9d377b8`](https://github.com/eea/volto-slate/commit/9d377b8b10b54d8e08786d93cdcbc86876b4c4c7)] +- Save data with link [Tiberiu Ichim - [`43fbb41`](https://github.com/eea/volto-slate/commit/43fbb413ff4d07fa78da711e03c33a0b905fb075)] +- Fix link insertion [Tiberiu Ichim - [`4839948`](https://github.com/eea/volto-slate/commit/4839948be93a525d457a26a441fb91f16ca71eea)] +- WIP on link plugin [Tiberiu Ichim - [`1125384`](https://github.com/eea/volto-slate/commit/1125384dda077b50261d85a9b0edef052df2e394)] +- Fix backspace handling [Tiberiu Ichim - [`4755499`](https://github.com/eea/volto-slate/commit/475549946533afabdfee3da88cb9226a69836246)] +- Improve handling of block navigation [Tiberiu Ichim - [`7270da1`](https://github.com/eea/volto-slate/commit/7270da1bae196c9b6cf2ae0d179ff46da19496c0)] +- Remove react-portal dependency [Tiberiu Ichim - [`a44b789`](https://github.com/eea/volto-slate/commit/a44b7897817979fac82dea3923fa58b332698b95)] +- More work [Silviu Bogan - [`cf837b9`](https://github.com/eea/volto-slate/commit/cf837b92c09ddecd9989f0514f1df753066a0037)] +- Solved small bug [Silviu Bogan - [`9c5d2e4`](https://github.com/eea/volto-slate/commit/9c5d2e4a746f842e67d2bb0b354b3001f36cd8f3)] +- More cleanup [Silviu Bogan - [`0c9513e`](https://github.com/eea/volto-slate/commit/0c9513e8dd2c6d5a9b1cfb4ae4ff1301fcb8264e)] +- Some code cleanup [Tiberiu Ichim - [`93fa5c2`](https://github.com/eea/volto-slate/commit/93fa5c2ab5875adec320e625cd3665789013462e)] +- Some code cleanup [Tiberiu Ichim - [`821b017`](https://github.com/eea/volto-slate/commit/821b01738e033d5e1372dbc740a87b5170a1c7c9)] +- Some work on focus [Tiberiu Ichim - [`2411a4d`](https://github.com/eea/volto-slate/commit/2411a4da7b5c96a6db14a89c13a9644ce1fe9b44)] +- More work [Silviu Bogan - [`4834549`](https://github.com/eea/volto-slate/commit/4834549a44c125636a230e5fbca63af67c000d65)] +- Handle backspace key on first position [Silviu Bogan - [`a6bb0a2`](https://github.com/eea/volto-slate/commit/a6bb0a2a16cecac799197f682977193d8216278d)] +- Added a comment [Silviu Bogan - [`404d0e7`](https://github.com/eea/volto-slate/commit/404d0e7709c4e11727cbabcb0fe9839beb9b9ea3)] +- Added callout plugin [Silviu Bogan - [`b4d1b7c`](https://github.com/eea/volto-slate/commit/b4d1b7c67f8765b1ec381a3983e3f552c4e20b81)] +- Use h2 and h3, not h1 and h2 [Silviu Bogan - [`6d37835`](https://github.com/eea/volto-slate/commit/6d3783511d3a5a4e1a6a6e004ef1a6100004df13)] +- Autofocus block [Silviu Bogan - [`34d6528`](https://github.com/eea/volto-slate/commit/34d6528c2c5cc0ec328e25e54feb7c4c6fd4b60c)] +- Style and name changes [Silviu Bogan - [`71e18e5`](https://github.com/eea/volto-slate/commit/71e18e53a6a961f57627bc85e63362b3f577b16e)] +- Run eslint [Tiberiu Ichim - [`8f1cff1`](https://github.com/eea/volto-slate/commit/8f1cff1f6ced619a05f302d194bd420dd23f06c1)] +- Move less import back to its proper place [Tiberiu Ichim - [`2e79e04`](https://github.com/eea/volto-slate/commit/2e79e0438faed4c7728dd38d79bc2a54d9c9136d)] +- Fix imports [Tiberiu Ichim - [`8974c0a`](https://github.com/eea/volto-slate/commit/8974c0a928cfe0ee8cc6dfb7399719ad0879a29b)] +- More work [Silviu Bogan - [`92a01b4`](https://github.com/eea/volto-slate/commit/92a01b477473c0653f6236340ea11c2ddea703f2)] +- More work [Silviu Bogan - [`6a9443b`](https://github.com/eea/volto-slate/commit/6a9443b11c05ea08f7ab68c6451274805c564531)] +- More work [Silviu Bogan - [`52a67d8`](https://github.com/eea/volto-slate/commit/52a67d835c8540f558f1633917941adc46147d94)] +- Fix error [Tiberiu Ichim - [`5001e29`](https://github.com/eea/volto-slate/commit/5001e292ee08236883bbadfbb3783993b00f628b)] +- Fix error [Tiberiu Ichim - [`16aa7a0`](https://github.com/eea/volto-slate/commit/16aa7a0fde9b4e5839d1e6decad83fffe486548c)] +- More untested work [Silviu Bogan - [`a37cd85`](https://github.com/eea/volto-slate/commit/a37cd85a8ee1666ec022f8eb3832af01fb4e4825)] +- Solve warning in browser console [Silviu Bogan - [`7444ebc`](https://github.com/eea/volto-slate/commit/7444ebc9705892816a7ef68172b8762f2ee962c6)] +- Solve an error [Silviu Bogan - [`03ca053`](https://github.com/eea/volto-slate/commit/03ca0534078e1ff40d1b5a6df490d7856c58cf1e)] +- More work [Silviu Bogan - [`42bc1f9`](https://github.com/eea/volto-slate/commit/42bc1f983115ef8dd251f009144fbd3ddbe8600b)] +- Bring back less file [Tiberiu Ichim - [`197138b`](https://github.com/eea/volto-slate/commit/197138b0465d158ccf743e3d8e0d779de59c12b9)] +- Added Button test [Tiberiu Ichim - [`587e381`](https://github.com/eea/volto-slate/commit/587e381a14f2f8fd005e330ed40440d12782971c)] +- Load buttons from settings [Tiberiu Ichim - [`292d341`](https://github.com/eea/volto-slate/commit/292d3419d5ddb420afcdfb908726c28cb8b09c37)] +- Fix leaf rendering [Tiberiu Ichim - [`9523e9c`](https://github.com/eea/volto-slate/commit/9523e9c8ef1b8f634832c078a0f8b1ebeef9f89e)] +- Refactored leafs [Tiberiu Ichim - [`3515b95`](https://github.com/eea/volto-slate/commit/3515b956d1ac37c8c8cf0e105fc70471b36c52ea)] +- Improve package [Tiberiu Ichim - [`1ff3fc2`](https://github.com/eea/volto-slate/commit/1ff3fc27b997566ae3798bb0d5587867bc2add5e)] +- Refactored addon, added Link plugin [Tiberiu Ichim - [`da1d7d9`](https://github.com/eea/volto-slate/commit/da1d7d9e3e868335f385361f8b1e17b31ffe09a9)] +- Added LinkButton [Tiberiu Ichim - [`72f03ea`](https://github.com/eea/volto-slate/commit/72f03ea0b3a48a4c34412fa1add994788d748dd3)] +- More work [Silviu Bogan - [`257f6c4`](https://github.com/eea/volto-slate/commit/257f6c4efe3f7ee19ca0070cb93504cd9ee9997b)] +- More work [Silviu Bogan - [`fc51cb0`](https://github.com/eea/volto-slate/commit/fc51cb09561ccdbb2baf539b3b972920eec8d725)] +- More work [Silviu Bogan - [`9ca8fac`](https://github.com/eea/volto-slate/commit/9ca8fac5dd3625f9ddbdb7a66dd4cf3e0ad415ef)] +- More work [Silviu Bogan - [`44efef9`](https://github.com/eea/volto-slate/commit/44efef9a7b6b0892faa80faa789dc5ce3bb0125c)] +- HoveringToolbar working again [Silviu Bogan - [`e01450f`](https://github.com/eea/volto-slate/commit/e01450f8a1258609a21d6fddcd0d043994c469ed)] +- Renamed some components and their files [Silviu Bogan - [`7c6191b`](https://github.com/eea/volto-slate/commit/7c6191b97b129558811533cb659f9d3194a25edf)] +- Renamed variable [Silviu Bogan - [`3be520d`](https://github.com/eea/volto-slate/commit/3be520d6429fd52f0daa96b693a5e831df06f5ef)] +- More work [Silviu Bogan - [`877ce5e`](https://github.com/eea/volto-slate/commit/877ce5ef40db120318b317e2b31e8c0f66cdf9b2)] +- WIP [Tiberiu Ichim - [`1308cc1`](https://github.com/eea/volto-slate/commit/1308cc196954ee32bf629c250e0e938002e8d92b)] +- WIP [Tiberiu Ichim - [`aaa27a7`](https://github.com/eea/volto-slate/commit/aaa27a7aff6f8465d261ac354f47c64294a6c469)] +- Not-working commit [Silviu Bogan - [`b010f12`](https://github.com/eea/volto-slate/commit/b010f12f1abb163cb6c978bfda00bfd5a8fbe4ac)] +- More work [Silviu Bogan - [`54ec57d`](https://github.com/eea/volto-slate/commit/54ec57d7aaeec9260ff0222eb4b3d3aaea80fabd)] +- More work [Silviu Bogan - [`14d4a10`](https://github.com/eea/volto-slate/commit/14d4a10f5feba174729169a9d96018e7ad516ade)] +- Working prototype [Silviu Bogan - [`d181639`](https://github.com/eea/volto-slate/commit/d181639a6089c8172d97dd083e495b7e327db418)] +- Split editor component into its own folder [Tiberiu Ichim - [`01b9b37`](https://github.com/eea/volto-slate/commit/01b9b3738e2cd38701a78e81d2508b78e8497b5e)] +- Avoid a bug with toolbar [Tiberiu Ichim - [`dfbb678`](https://github.com/eea/volto-slate/commit/dfbb6783da8ef6b0232546c074409da97efb8e51)] +- Redo toolbar styling [Tiberiu Ichim - [`969114d`](https://github.com/eea/volto-slate/commit/969114d43a77af2961e96e8a5ce4f4d8812873f1)] +- Styling improvements [Tiberiu Ichim - [`ec94dc9`](https://github.com/eea/volto-slate/commit/ec94dc9d20eca94372c511004c8b4378a14b19a2)] +- Basic Slate editor with toolbar [Tiberiu Ichim - [`1b9259c`](https://github.com/eea/volto-slate/commit/1b9259c40703611a484e7f588fe5816330c3a5d4)] +- Initial package content [Tiberiu Ichim - [`d34f2f3`](https://github.com/eea/volto-slate/commit/d34f2f3cbea0ae6a1cd9aa5677eaf3ccc54b96f8)] +- Initial package content [Tiberiu Ichim - [`6cef6eb`](https://github.com/eea/volto-slate/commit/6cef6eb3725910570e95d900abfbe3e3e8564dba)] diff --git a/package.json b/package.json index e5225cbd..4476762c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "volto-slate", - "version": "6.3.0", + "version": "6.3.1", "description": "Slate.js integration with Volto", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 93722c6073b39debac4e95794d4cd219bfefc7b4 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Tue, 20 Sep 2022 13:28:01 +0300 Subject: [PATCH 3/6] Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4476762c..766bd5fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "volto-slate", - "version": "6.3.1", + "version": "6.4.0", "description": "Slate.js integration with Volto", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From c9ed44e34b1577d56fb0180cbaa01eeead4ab3ff Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Tue, 20 Sep 2022 11:08:19 +0000 Subject: [PATCH 4/6] Automated release 6.4.0 --- CHANGELOG.md | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 319b5085..06810da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ 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). -### [6.3.1](https://github.com/eea/volto-slate/compare/6.3.0...6.3.1) - 20 September 2022 +### [6.4.0](https://github.com/eea/volto-slate/compare/6.3.0...6.4.0) - 20 September 2022 #### :hammer_and_wrench: Others +- Bump version [Miu Razvan - [`93722c6`](https://github.com/eea/volto-slate/commit/93722c6073b39debac4e95794d4cd219bfefc7b4)] - Use the new design for StyleMenu [Miu Razvan - [`2b44796`](https://github.com/eea/volto-slate/commit/2b44796cbe0a686a10c78a906c4ad0550ef83d29)] ### [6.3.0](https://github.com/eea/volto-slate/compare/6.2.2...6.3.0) - 26 August 2022 @@ -20,7 +21,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`748cfcc`](https://github.com/eea/volto-slate/commit/748cfcc1ba641b2374d59d26e77d39754a4f31f2)] ### [6.2.0](https://github.com/eea/volto-slate/compare/6.1.0...6.2.0) - 8 June 2022 #### :hammer_and_wrench: Others @@ -46,14 +46,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`899d59a`](https://github.com/eea/volto-slate/commit/899d59a350fe2c5ddb15192689df472725ad1ffa)] ### [5.4.0](https://github.com/eea/volto-slate/compare/5.3.5...5.4.0) - 15 March 2022 ### [5.3.5](https://github.com/eea/volto-slate/compare/5.3.4...5.3.5) - 8 March 2022 #### :hammer_and_wrench: Others -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`ec96dad`](https://github.com/eea/volto-slate/commit/ec96dad4b78750a4ca2414515dfe211746dd2273)] ### [5.3.4](https://github.com/eea/volto-slate/compare/5.3.3...5.3.4) - 17 February 2022 ### [5.3.3](https://github.com/eea/volto-slate/compare/5.3.2...5.3.3) - 5 January 2022 @@ -101,7 +99,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`57f76bc`](https://github.com/eea/volto-slate/commit/57f76bc2c69075201a1b60d2231789df99019247)] - Add SonarQube badges [Alin Voinea - [`a929620`](https://github.com/eea/volto-slate/commit/a929620de3e8f36af0b1d2a5a82d3831c194819f)] - Release 5.2.0 [Alin Voinea - [`e941f3d`](https://github.com/eea/volto-slate/commit/e941f3d987d62fbffce095b013561629614148a1)] - Don't crash in trim check [Tiberiu Ichim - [`db2cbf9`](https://github.com/eea/volto-slate/commit/db2cbf91f0fe8956eae786bfe187565b7226c302)] @@ -131,7 +128,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Update tests snapshots [Alin Voinea - [`dafcef0`](https://github.com/eea/volto-slate/commit/dafcef0f0337e043bc1a821c3c18641a9e3a11f8)] - Remove obsolte resolutions [Alin Voinea - [`3738673`](https://github.com/eea/volto-slate/commit/37386734e9942d3b835f0265a2a48ccda3cd4b91)] - Release 5.1.0 [Alin Voinea - [`140c219`](https://github.com/eea/volto-slate/commit/140c219ba9036531644474546f1fe5a461713886)] -- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`b5522f3`](https://github.com/eea/volto-slate/commit/b5522f3845de785cafe76c35e2497e539d1c04d4)] ## [5.0.0](https://github.com/eea/volto-slate/compare/4.2.1...5.0.0) - 5 November 2021 #### :bug: Bug Fixes @@ -158,13 +154,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - WIP [Tiberiu Ichim - [`d010260`](https://github.com/eea/volto-slate/commit/d0102606c72d3dde834c08de0fcf4b03af6c7897)] - Release 5.0.0 [Alin Voinea - [`c44b3b7`](https://github.com/eea/volto-slate/commit/c44b3b7a91568ddfad4e1add1c5fdd6cfda64e3e)] - Bring back old version of code [Tiberiu Ichim - [`f2a7c2c`](https://github.com/eea/volto-slate/commit/f2a7c2c77ac1b1f2d73257437fbe268eed3818f9)] -- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`7fd4ebe`](https://github.com/eea/volto-slate/commit/7fd4ebeee1c45fd95b7c9aa49943cc25d333e5ba)] - Revert "Disable cypress in order to be able to release" [Alin Voinea - [`d57c9cf`](https://github.com/eea/volto-slate/commit/d57c9cfc6cacf3418fbd35eb1ae17f9d40e18c07)] - Release 4.1.0 [Alin Voinea - [`bc3c6df`](https://github.com/eea/volto-slate/commit/bc3c6df829d69673472fd992995eb49163bc2aad)] - Disable cypress in order to be able to release [Alin Voinea - [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89)] - Possibility to make SlateRichText Widget read-only in edit mode [Alin Voinea - [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524)] - Update Jest snapshots [Silviu Bogan - [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0)] -- Run `yarn prettier:fix` [Silviu Bogan - [`df9d5cc`](https://github.com/eea/volto-slate/commit/df9d5ccd75007f4f5e7f0bea6f2ffbb4a52f2aed)] - Remove `only` mark on the new Cypress test [Silviu Bogan - [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9)] - Working Cypress test in 21-metadata-slate-format-link.js [Silviu Bogan - [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676)] ### [4.2.1](https://github.com/eea/volto-slate/compare/4.2.0...4.2.1) - 18 October 2021 @@ -191,14 +185,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Disable cypress in order to be able to release [Alin Voinea - [`7657222`](https://github.com/eea/volto-slate/commit/76572220bd0c3371ef264363579b153e89df2d89)] - Possibility to make SlateRichText Widget read-only in edit mode [Alin Voinea - [`245c817`](https://github.com/eea/volto-slate/commit/245c81742754b4ed1441e06fed3e26069f0a8524)] - Update Jest snapshots [Silviu Bogan - [`62b89e7`](https://github.com/eea/volto-slate/commit/62b89e7a6f0db456500c305370d0b9d18349a6e0)] -- Run `yarn prettier:fix` [Silviu Bogan - [`df9d5cc`](https://github.com/eea/volto-slate/commit/df9d5ccd75007f4f5e7f0bea6f2ffbb4a52f2aed)] - Remove `only` mark on the new Cypress test [Silviu Bogan - [`3a72cf8`](https://github.com/eea/volto-slate/commit/3a72cf83582644ac203736443cf3682ad43dadf9)] - Working Cypress test in 21-metadata-slate-format-link.js [Silviu Bogan - [`5a01ea4`](https://github.com/eea/volto-slate/commit/5a01ea4adac3616bdc573bcbdd1c9f9d1120e676)] ### [4.0.3](https://github.com/eea/volto-slate/compare/4.0.2...4.0.3) - 30 September 2021 #### :hammer_and_wrench: Others -- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`fe1fd6f`](https://github.com/eea/volto-slate/commit/fe1fd6f655da49d578bbefec3a68d6c5da224ada)] ### [4.0.2](https://github.com/eea/volto-slate/compare/4.0.2-alpha.0...4.0.2) - 29 September 2021 ### [4.0.2-alpha.0](https://github.com/eea/volto-slate/compare/4.0.1...4.0.2-alpha.0) - 28 September 2021 @@ -267,7 +259,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Fix cypress api_url [Alin Voinea - [`596cbfb`](https://github.com/eea/volto-slate/commit/596cbfbf1d1820c28faa1ea178ee05a2b6a72f9c)] -- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`a97689d`](https://github.com/eea/volto-slate/commit/a97689de4dc39186da03ed0b1216471d2e305764)] ### [3.0.0-alpha.0](https://github.com/eea/volto-slate/compare/2.9.3...3.0.0-alpha.0) - 9 September 2021 #### :hammer_and_wrench: Others @@ -275,7 +266,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Fix volto-object-widget dependency pin [Alin Voinea - [`d72ebdd`](https://github.com/eea/volto-slate/commit/d72ebddee1e25afdc188d39c953796d2e94ced2e)] - Cypress increase timeout and retries [Alin Voinea - [`c8ff87c`](https://github.com/eea/volto-slate/commit/c8ff87c38e304661c348a7590dad994fa700bdb2)] - Reduce cypress timeout and retries [Alin Voinea - [`ee28f67`](https://github.com/eea/volto-slate/commit/ee28f67f0022f44cce58d9b5423770f9e8320369)] -- yarn lint [Alin Voinea - [`4f16d84`](https://github.com/eea/volto-slate/commit/4f16d84db174bb092344f91522dc5d2a0cf44f91)] - Add cypress tests for Slate JSON Field metadata [Alin Voinea - [`c2460d9`](https://github.com/eea/volto-slate/commit/c2460d9e6fec7e90c9c0eefb6f43f9b994588b74)] - Fix deconstructToVoltoBlocks conditions [Alin Voinea - [`887ec31`](https://github.com/eea/volto-slate/commit/887ec312e02e0ca56e17de423a078024ca8e6a24)] - Cypress retry 3 times before fail [Alin Voinea - [`dd4762b`](https://github.com/eea/volto-slate/commit/dd4762bbd59195e7de7803b4432ab7f75568ee56)] @@ -343,10 +333,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Update SlateEditor.jsx [Tiberiu Ichim - [`6e88544`](https://github.com/eea/volto-slate/commit/6e885440dd603536809cd822b6aa73acbb917e78)] -- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`821e386`](https://github.com/eea/volto-slate/commit/821e386c79307e492546712f8e06cf63e32b206e)] -- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`fc21423`](https://github.com/eea/volto-slate/commit/fc2142376a65be21a02a5e6f21f92c8f6fff6424)] - fix quotes [valentinab25 - [`205d2bc`](https://github.com/eea/volto-slate/commit/205d2bcf965e7cd5d124d38ddad81dec8e125614)] -- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`afa38ab`](https://github.com/eea/volto-slate/commit/afa38abc1c80f441171e652b46439fb7ee24d865)] - Lower timeout to 150 [Tiberiu Ichim - [`363652c`](https://github.com/eea/volto-slate/commit/363652c2e891efc8c6be265e62489bb4ba0239ca)] ### [2.8.1](https://github.com/eea/volto-slate/compare/2.8.0...2.8.1) - 1 July 2021 @@ -719,7 +706,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Make home/end keys work [Tiberiu Ichim - [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985)] - Make readOnly really work [Tiberiu Ichim - [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37)] - Correct mistake: removed readOnly prop from SlateEditor [Silviu Bogan - [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8)] -- yarn workspace volto-slate add react-visibility-sensor [Alin Voinea - [`dc02e5f`](https://github.com/eea/volto-slate/commit/dc02e5f0954030bfb1a4b610feb15484bce49c6e)] - Add missing dependency react-visibility-sensor [Alin Voinea - [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b)] - Reintroduce Dropzone and use it correctly [Silviu Bogan - [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62)] - Switch back read-only mode to true if another block is selected [kreafox - [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029)] @@ -775,7 +761,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Make home/end keys work [Tiberiu Ichim - [`eeb2956`](https://github.com/eea/volto-slate/commit/eeb2956b354646e72100be4cd56f54cab87eb985)] - Make readOnly really work [Tiberiu Ichim - [`85c4125`](https://github.com/eea/volto-slate/commit/85c4125700aa232e47a020a48e8c6241e2e76b37)] - Correct mistake: removed readOnly prop from SlateEditor [Silviu Bogan - [`9a371e7`](https://github.com/eea/volto-slate/commit/9a371e77919899d0fdfa406e25d9ae5806f295b8)] -- yarn workspace volto-slate add react-visibility-sensor [Alin Voinea - [`dc02e5f`](https://github.com/eea/volto-slate/commit/dc02e5f0954030bfb1a4b610feb15484bce49c6e)] - Add missing dependency react-visibility-sensor [Alin Voinea - [`38e23ae`](https://github.com/eea/volto-slate/commit/38e23ae10436df1e9ccb2f4a01c438d16a57709b)] - Reintroduce Dropzone and use it correctly [Silviu Bogan - [`cb59e43`](https://github.com/eea/volto-slate/commit/cb59e4395fde7719295e1b9bc7b56ab8fb18ca62)] - Switch back read-only mode to true if another block is selected [kreafox - [`99bda15`](https://github.com/eea/volto-slate/commit/99bda158ace92ed99d2bff4a9c1917fee8d28029)] @@ -1477,7 +1462,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Fix README images [Tiberiu Ichim - [`7ffdc71`](https://github.com/eea/volto-slate/commit/7ffdc717325dab50dda20ba2ac56aa711d969af4)] - Removed .eslintrc.json temporary [Silviu Bogan - [`da3590b`](https://github.com/eea/volto-slate/commit/da3590bea266aadb6a06db41efb2c1aeef97fd30)] - Fix styling [Tiberiu Ichim - [`de23bb5`](https://github.com/eea/volto-slate/commit/de23bb539b7045e95743ca8951eb6b9cdf4408d7)] -- Used 'yarn run lint' on all the files [Silviu Bogan - [`e47a295`](https://github.com/eea/volto-slate/commit/e47a295801f54b496b3364cec608be1a82e6caf9)] - Used ESLint on all the files [Silviu Bogan - [`a718cd6`](https://github.com/eea/volto-slate/commit/a718cd64ad97ec6406fa21c95327141e597a05d3)] - Use Prettier for all the files in volto-slate [Silviu Bogan - [`88dc8ac`](https://github.com/eea/volto-slate/commit/88dc8acd3d3e5a4a6c819d8339d1d9cb14533b4d)] - Working unit tests and updated snapshots [Silviu Bogan - [`35b8b2e`](https://github.com/eea/volto-slate/commit/35b8b2e73d68a959b83763c35ce930f99bc85bda)] From e0fec91497540a35740425b5bf65f88705cdd6d7 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Thu, 22 Sep 2022 13:51:45 +0300 Subject: [PATCH 5/6] don't let block-style override slate classname --- src/editor/plugins/StyleMenu/StyleMenu.jsx | 100 ++++++++++----------- src/editor/plugins/StyleMenu/index.js | 31 ++----- src/editor/plugins/StyleMenu/style.css | 30 ------- src/editor/plugins/StyleMenu/style.less | 48 ++++++++++ src/editor/plugins/StyleMenu/utils.js | 2 +- src/editor/render.jsx | 4 +- 6 files changed, 102 insertions(+), 113 deletions(-) delete mode 100644 src/editor/plugins/StyleMenu/style.css create mode 100644 src/editor/plugins/StyleMenu/style.less diff --git a/src/editor/plugins/StyleMenu/StyleMenu.jsx b/src/editor/plugins/StyleMenu/StyleMenu.jsx index c171cb3a..4d0a48d5 100644 --- a/src/editor/plugins/StyleMenu/StyleMenu.jsx +++ b/src/editor/plugins/StyleMenu/StyleMenu.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import { ReactEditor, useSlate } from 'slate-react'; +import { useSlate } from 'slate-react'; import { Dropdown } from 'semantic-ui-react'; import { useIntl, defineMessages } from 'react-intl'; import cx from 'classnames'; @@ -27,19 +27,31 @@ const StyleMenuButton = ({ icon, active, ...props }) => ( ); -const StylingsButton = () => { +const MenuOpts = ({ editor, toSelect, option }) => { + const isActive = toSelect.includes(option); + return ( + { + event.stopPropagation(); + toggleStyle(editor, { + cssClass: selItem.value, + isBlock: selItem.isBlock, + }); + }} + /> + ); +}; + +const StylingsButton = (props) => { const editor = useSlate(); const intl = useIntl(); // Converting the settings to a format that is required by dropdowns. const inlineOpts = [ - { - text: intl.formatMessage(messages.inlineStyle), - disabled: false, - selected: false, - style: { opacity: 0.45 }, - onClick: (event) => event.preventDefault(), - }, ...config.settings.slate.styleMenu.inlineStyles.map((def) => { return { value: def.cssClass, @@ -50,13 +62,6 @@ const StylingsButton = () => { }), ]; const blockOpts = [ - { - text: intl.formatMessage(messages.paragraphStyle), - disabled: false, - selected: false, - style: { opacity: 0.45 }, - onClick: (event) => event.preventDefault(), - }, ...config.settings.slate.styleMenu.blockStyles.map((def) => { return { value: def.cssClass, @@ -84,10 +89,14 @@ const StylingsButton = () => { } } + const menuItemProps = { + toSelect, + editor, + }; const showMenu = inlineOpts.length || blockOpts.length; return showMenu ? ( { } > - {inlineOpts.map((option, index) => { - const isActive = toSelect.includes(option); - return ( - { - event.stopPropagation(); - toggleStyle(editor, { - cssClass: selItem.value, - isBlock: selItem.isBlock, - }); - ReactEditor.focus(editor); - }} - {...option} + {inlineOpts.length && ( + <> + - ); - })} - {blockOpts.map((option, index) => { - const isActive = toSelect.includes(option); - return ( - { - event.stopPropagation(); - toggleStyle(editor, { - cssClass: selItem.value, - isBlock: selItem.isBlock, - }); - ReactEditor.focus(editor); - }} - {...option} + {inlineOpts.map((option) => ( + + ))} + + )} + + {blockOpts.length && ( + <> + - ); - })} + {blockOpts.map((option) => ( + + ))} + + )} ) : ( diff --git a/src/editor/plugins/StyleMenu/index.js b/src/editor/plugins/StyleMenu/index.js index f3be4c39..7e2685fc 100644 --- a/src/editor/plugins/StyleMenu/index.js +++ b/src/editor/plugins/StyleMenu/index.js @@ -1,8 +1,6 @@ import React from 'react'; import StyleMenu from './StyleMenu'; -import './style.css'; -import { Icon } from '@plone/volto/components'; -import paintSVG from '@plone/volto/icons/paint.svg'; +import './style.less'; export default function install(config) { const { slate } = config.settings; @@ -12,29 +10,10 @@ export default function install(config) { slate.toolbarButtons.push('styleMenu'); slate.expandedToolbarButtons.push('styleMenu'); - /* The slate Menu configuration in an addon */ - - slate.styleMenu = config.settings.slate.styleMenu || {}; - slate.styleMenu.inlineStyles = [ - { - cssClass: 'cool-inline-text', - label: 'Cool Inline Text', - icon: (props) => , - }, - ]; - slate.styleMenu.blockStyles = [ - { - cssClass: 'underline-block-text', - label: 'Cool Block Text', - icon: (props) => , - }, - ]; - - // slate.styleMenu = { - // inlineStyles: [], - // blockStyles: [], - // //themeColors = { primary: 'red' }; - // }; + slate.styleMenu = { + inlineStyles: [], + blockStyles: [], + }; return config; } diff --git a/src/editor/plugins/StyleMenu/style.css b/src/editor/plugins/StyleMenu/style.css deleted file mode 100644 index 6c2e90c9..00000000 --- a/src/editor/plugins/StyleMenu/style.css +++ /dev/null @@ -1,30 +0,0 @@ -/* Demo styles */ - -.green-block-text { - color: green; -} - -.underline-block-text { - text-decoration: underline; -} - -.cool-inline-text { - font-style: italic; - font-weight: bold; -} - -.red-inline-text { - color: red; -} - -.style-menu.ui.dropdown .menu .item { - user-select: none !important; -} - -.style-menu.ui.dropdown .menu .active { - z-index: 1; - background: #68778d !important; - box-shadow: none; - color: #ffffff !important; - font-weight: 300 !important; -} diff --git a/src/editor/plugins/StyleMenu/style.less b/src/editor/plugins/StyleMenu/style.less new file mode 100644 index 00000000..731f61af --- /dev/null +++ b/src/editor/plugins/StyleMenu/style.less @@ -0,0 +1,48 @@ +/* Demo styles */ + +.green-block-text { + color: green; +} + +.underline-block-text { + text-decoration: underline; +} + +.cool-inline-text { + font-style: italic; + font-weight: bold; +} + +.red-inline-text { + color: red; +} + +#style-menu.ui.dropdown .menu { + .item { + display: flex; + user-select: none; + + span.text { + margin-top: auto; + line-height: normal; + vertical-align: middle; + } + } + + .header { + color: rgb(153, 153, 153); + font-size: 1rem; + font-weight: normal; + } + + .active { + z-index: 1; + background: #68778d; + box-shadow: none; + color: #ffffff; + font-weight: 300; + } + + overflow: auto; + max-height: 50vh; +} diff --git a/src/editor/plugins/StyleMenu/utils.js b/src/editor/plugins/StyleMenu/utils.js index 95c89e22..bb0a43dc 100644 --- a/src/editor/plugins/StyleMenu/utils.js +++ b/src/editor/plugins/StyleMenu/utils.js @@ -1,7 +1,7 @@ /* eslint no-console: ["error", { allow: ["warn", "error"] }] */ import { Editor, Transforms } from 'slate'; -import { isBlockActive } from 'volto-slate/utils'; import config from '@plone/volto/registry'; +import { isBlockActive } from 'volto-slate/utils'; /** * Toggles a style (e.g. in the StyleMenu plugin). diff --git a/src/editor/render.jsx b/src/editor/render.jsx index 7fa0f5f1..9be8a5f5 100644 --- a/src/editor/render.jsx +++ b/src/editor/render.jsx @@ -15,10 +15,12 @@ export const Element = ({ element, attributes = {}, extras, ...rest }) => { const El = elements[element.type] || elements['default']; const out = Object.assign( - element.styleName ? { className: element.styleName } : {}, ...Object.keys(attributes || {}).map((k) => !isEmpty(attributes[k]) ? { [k]: attributes[k] } : {}, ), + element.styleName + ? { className: cx(attributes.className, element.styleName) } + : {}, ); return ( From 0c9644f93a4eaeb102bb5f4450f0725488090d23 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Thu, 22 Sep 2022 11:30:47 +0000 Subject: [PATCH 6/6] Automated release 6.4.0 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06810da1..97190bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ 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). -### [6.4.0](https://github.com/eea/volto-slate/compare/6.3.0...6.4.0) - 20 September 2022 +### [6.4.0](https://github.com/eea/volto-slate/compare/6.3.0...6.4.0) - 22 September 2022 #### :hammer_and_wrench: Others +- don't let block-style override slate classname [Miu Razvan - [`e0fec91`](https://github.com/eea/volto-slate/commit/e0fec91497540a35740425b5bf65f88705cdd6d7)] - Bump version [Miu Razvan - [`93722c6`](https://github.com/eea/volto-slate/commit/93722c6073b39debac4e95794d4cd219bfefc7b4)] - Use the new design for StyleMenu [Miu Razvan - [`2b44796`](https://github.com/eea/volto-slate/commit/2b44796cbe0a686a10c78a906c4ad0550ef83d29)] ### [6.3.0](https://github.com/eea/volto-slate/compare/6.2.2...6.3.0) - 26 August 2022