- Implemented WysiwygModalManager for managing modals related to code blocks and block settings. - Created WysiwygSelection for handling text selection across Shadow DOM boundaries. - Introduced WysiwygShortcuts for managing keyboard shortcuts and slash menu items. - Developed wysiwygStyles for consistent styling of the WYSIWYG editor. - Defined types for blocks, slash menu items, and shortcut patterns in wysiwyg.types.ts.
18 lines
736 B
TypeScript
18 lines
736 B
TypeScript
export * from './wysiwyg.types.js';
|
|
export * from './wysiwyg.interfaces.js';
|
|
export * from './wysiwyg.constants.js';
|
|
export * from './wysiwyg.styles.js';
|
|
export * from './wysiwyg.converters.js';
|
|
export * from './wysiwyg.shortcuts.js';
|
|
export * from './wysiwyg.blocks.js';
|
|
export * from './wysiwyg.formatting.js';
|
|
export * from './wysiwyg.selection.js';
|
|
export * from './wysiwyg.blockoperations.js';
|
|
export * from './wysiwyg.inputhandler.js';
|
|
export * from './wysiwyg.keyboardhandler.js';
|
|
export * from './wysiwyg.dragdrophandler.js';
|
|
export * from './wysiwyg.modalmanager.js';
|
|
export * from './wysiwyg.history.js';
|
|
export * from './dees-wysiwyg-block.js';
|
|
export * from './dees-slash-menu.js';
|
|
export * from './dees-formatting-menu.js'; |