Skip to content

Commit

Permalink
fix(types): FIx incorrect imports (#2811)
Browse files Browse the repository at this point in the history
* Fix types

* Update changelog
  • Loading branch information
TatianaFomina committed Aug 13, 2024
1 parent c8632b2 commit 339e772
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
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

0 comments on commit 339e772

Please sign in to comment.