From 35337747c57475aa945f7d53505fc38d1d617be9 Mon Sep 17 00:00:00 2001 From: Peter Savchenko Date: Thu, 19 Oct 2023 00:44:06 +0300 Subject: [PATCH] fix(inline-toolbar): editor element grow on inline toolbar close (#2516) --- docs/CHANGELOG.md | 1 + package.json | 4 ++-- src/components/modules/toolbar/inline.ts | 4 ++-- yarn.lock | 8 ++++---- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 8993c943..485b00e5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -7,6 +7,7 @@ - `Fix` — Multiple Tooltip elements creation fixed - `Fix` — When the focusing Block is out of the viewport, the page will be scrolled. - `Fix` — `blocks.render()` won't lead the `onChange` call in Safari +- `Fix` — Editor wrapper element growing on the Inline Toolbar close ### 2.28.2 diff --git a/package.json b/package.json index 93df854d..cffc355c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@editorjs/editorjs", - "version": "2.29.0-rc.3", + "version": "2.29.0-rc.4", "description": "Editor.js — Native JS, based on API and Open Source", "main": "dist/editorjs.umd.js", "module": "dist/editorjs.mjs", @@ -44,7 +44,7 @@ "@editorjs/code": "^2.7.0", "@editorjs/delimiter": "^1.2.0", "@editorjs/header": "^2.7.0", - "@editorjs/paragraph": "^2.11.1", + "@editorjs/paragraph": "^2.11.3", "@editorjs/simple-image": "^1.4.1", "@types/node": "^18.15.11", "chai-subset": "^1.6.0", diff --git a/src/components/modules/toolbar/inline.ts b/src/components/modules/toolbar/inline.ts index 458dbc86..03294ed8 100644 --- a/src/components/modules/toolbar/inline.ts +++ b/src/components/modules/toolbar/inline.ts @@ -379,8 +379,8 @@ export default class InlineToolbar extends Module { this.CSS.inlineToolbarRightOriented ); - this.nodes.wrapper.style.left = 'unset'; - this.nodes.wrapper.style.top = 'unset'; + this.nodes.wrapper.style.left = '0'; + this.nodes.wrapper.style.top = '0'; } /** diff --git a/yarn.lock b/yarn.lock index 283f2b71..10f57abf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -571,10 +571,10 @@ dependencies: "@codexteam/icons" "^0.0.5" -"@editorjs/paragraph@^2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@editorjs/paragraph/-/paragraph-2.11.1.tgz#86e14a9f4856eaa9577ddf65cfcf21a89f0b4bca" - integrity sha512-OekbO6/47yTV7n6+uF/Qw2/blsI+QpveqdFUK5dh0Hq6hfKMjBYkENiShmEUKP69EbI9BQrlMNVnrmz8W4V2jw== +"@editorjs/paragraph@^2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@editorjs/paragraph/-/paragraph-2.11.3.tgz#fb438de863179739f18de7d8851671a0d8447923" + integrity sha512-ON72lhvhgWzPrq4VXpHUeut9bsFeJgVATDeL850FVToOwYHKvdsNpfu0VgxEodhkXgzU/IGl4FzdqC2wd3AJUQ== dependencies: "@codexteam/icons" "^0.0.4"