Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import in types/events/block/index.ts #2739

Merged
merged 6 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
– `Improvement` — *Types* — `BlockToolConstructorOptions` type improved, `block` and `config` are not optional anymore
- `Improvement` - The Plus button and Block Tunes toggler are now better aligned with large line-height blocks, such as Headings
- `Improvement` — Creating links on Android devices: now the mobile keyboard will have an "Enter" key for accepting the inserted link.
- `Fix` — The problem caused of missed "import type" in block mutation event types resolved

### 2.29.1

Expand Down
8 changes: 4 additions & 4 deletions types/events/block/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type BlockAddedEvent, BlockAddedMutationType } from './BlockAdded';
import { type BlockChangedEvent, BlockChangedMutationType } from './BlockChanged';
import { type BlockMovedEvent, BlockMovedMutationType } from './BlockMoved';
import { type BlockRemovedEvent, BlockRemovedMutationType } from './BlockRemoved';
import type { BlockAddedEvent, BlockAddedMutationType } from './BlockAdded';
import type { BlockChangedEvent, BlockChangedMutationType } from './BlockChanged';
import type { BlockMovedEvent, BlockMovedMutationType } from './BlockMoved';
import type { BlockRemovedEvent, BlockRemovedMutationType } from './BlockRemoved';

/**
* Map for Custom Events related to block mutation types
Expand Down