feat(wysiwyg): implement backspace

This commit is contained in:
2025-06-24 15:52:28 +00:00
parent 83f153f654
commit ca525ce7e3
7 changed files with 563 additions and 108 deletions

View File

@@ -33,6 +33,7 @@ export interface IWysiwygComponent {
updateBlockElement(blockId: string): void;
handleDrop(e: DragEvent, targetBlock: IBlock): void;
renderBlocksProgrammatically(): void;
saveToHistory(debounce?: boolean): void;
// Handlers
blockOperations: IBlockOperations;