vdc-editor 0.1.120 → 0.1.122

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ import { Plugin } from '@tiptap/pm/state';
2
+
3
+ /**
4
+ * ProseMirror quirk: inline atom nodes (like `superText`) cannot
5
+ * safely exist at the start of a paragraph or directly adjacent
6
+ * without causing caret and <br> insertion issues.
7
+ */
8
+ export declare const superTextBackspaceFix: Plugin<any>;
@@ -0,0 +1 @@
1
+ export * from './backspaceFix';