Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 2.30.5

– `Fix` – Fix exported types

### 2.30.4

- `Fix` - Tool's exporting types added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@editorjs/editorjs",
"version": "2.30.4",
"version": "2.30.5",
"description": "Editor.js — open source block-style WYSIWYG editor with JSON output",
"main": "dist/editorjs.umd.js",
"module": "dist/editorjs.mjs",
Expand Down
2 changes: 1 addition & 1 deletion types/api/tools.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BlockToolAdapter } from '@/types/tools/adapters/block-tool-adapter';
import { BlockToolAdapter } from '../tools/adapters/block-tool-adapter';

/**
* Describes methods for accessing installed Editor tools
Expand Down
2 changes: 1 addition & 1 deletion types/tools/menu-config.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemParams, PopoverItemSeparatorParams, WithChildren } from "../configs";
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemSeparatorParams, WithChildren } from '../utils/popover';

/**
* Menu configuration format.
Expand Down