mirror of
https://github.com/codex-team/editor.js
synced 2026-03-14 14:45:47 +01:00
fix(types): FIx incorrect imports (#2811)
* Fix types * Update changelog
This commit is contained in:
parent
c8632b295f
commit
339e772b92
4 changed files with 7 additions and 3 deletions
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
### 2.30.5
|
||||
|
||||
– `Fix` – Fix exported types
|
||||
|
||||
### 2.30.4
|
||||
|
||||
- `Fix` - Tool's exporting types added
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
2
types/api/tools.d.ts
vendored
2
types/api/tools.d.ts
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
types/tools/menu-config.d.ts
vendored
2
types/tools/menu-config.d.ts
vendored
|
|
@ -1,4 +1,4 @@
|
|||
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemParams, PopoverItemSeparatorParams, WithChildren } from "../configs";
|
||||
import { PopoverItemDefaultBaseParams, PopoverItemHtmlParams, PopoverItemSeparatorParams, WithChildren } from '../utils/popover';
|
||||
|
||||
/**
|
||||
* Menu configuration format.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue