From b20c891478f89673a3e4a97613db16a2993e0b77 Mon Sep 17 00:00:00 2001 From: Fabian Date: Wed, 6 Nov 2024 19:40:26 +0100 Subject: [PATCH] notifier and tooltip, fix closes #2591, #2390, #2462 (#2842) * notifier and tooltip, fix closes #2591, #2390, #2462 * Update CHANGELOG.md --------- Co-authored-by: Peter --- docs/CHANGELOG.md | 1 + package.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 64dd38d5..205b2086 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -8,6 +8,7 @@ - `Fix` - Incorrect caret position after blocks merging in Safari - `Fix` - Several toolbox items exported by the one tool have the same shortcut displayed in toolbox - `Improvement` - The current block reference will be updated in read-only mode when blocks are clicked +- `Fix` - codex-notifier and codex-tooltip moved from devDependencies to dependencies in package.json to solve type errors ### 2.30.6 diff --git a/package.json b/package.json index 35d83fb9..089fdcd8 100644 --- a/package.json +++ b/package.json @@ -50,8 +50,6 @@ "@editorjs/simple-image": "^1.4.1", "@types/node": "^18.15.11", "chai-subset": "^1.6.0", - "codex-notifier": "^1.1.2", - "codex-tooltip": "^1.0.5", "core-js": "3.30.0", "cypress": "^13.13.3", "cypress-intellij-reporter": "^0.0.7", @@ -79,6 +77,8 @@ "url": "https://opencollective.com/editorjs" }, "dependencies": { - "@editorjs/caret": "^1.0.1" + "@editorjs/caret": "^1.0.1", + "codex-notifier": "^1.1.2", + "codex-tooltip": "^1.0.5" } }