Skip to content

Commit 339e772

Browse files
fix(types): FIx incorrect imports (codex-team#2811)
* Fix types * Update changelog
1 parent c8632b2 commit 339e772

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 2.30.5
4+
5+
`Fix` – Fix exported types
6+
37
### 2.30.4
48

59
- `Fix` - Tool's exporting types added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@editorjs/editorjs",
3-
"version": "2.30.4",
3+
"version": "2.30.5",
44
"description": "Editor.js — open source block-style WYSIWYG editor with JSON output",
55
"main": "dist/editorjs.umd.js",
66
"module": "dist/editorjs.mjs",

types/api/tools.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BlockToolAdapter } from '@/types/tools/adapters/block-tool-adapter';
1+
import { BlockToolAdapter } from '../tools/adapters/block-tool-adapter';
22

33
/**
44
* Describes methods for accessing installed Editor tools

types/tools/menu-config.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemParams, PopoverItemSeparatorParams, WithChildren } from "../configs";
1+
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemSeparatorParams, WithChildren } from '../utils/popover';
22

33
/**
44
* Menu configuration format.

0 commit comments

Comments
 (0)