@fileverse-dev/ddoc 2.2.2-patch-tec-235.1 → 2.2.2-patch-1
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.
package/dist/index.es.js
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Editor } from '@tiptap/core';
|
2
|
+
import { PluginKey, Plugin } from '@tiptap/pm/state';
|
3
|
+
import { DecorationSet } from '@tiptap/pm/view';
|
4
|
+
|
5
|
+
export declare const inlineUiKey: PluginKey<any>;
|
6
|
+
export declare const InlineLoaderPlugin: () => Plugin<DecorationSet>;
|
7
|
+
export declare const showInlineLoadingUI: (editor: Editor, id: string, text: string) => HTMLDivElement | undefined;
|
8
|
+
export declare const removeInlineUI: (editor: Editor, id: string, floatingDiv?: HTMLDivElement) => void;
|
9
|
+
export declare const inlineLoader: (editor: Editor, text: string) => {
|
10
|
+
showLoader: () => HTMLDivElement | undefined;
|
11
|
+
removeLoader: (div?: HTMLDivElement) => void;
|
12
|
+
};
|