vdc-editor 0.1.49 → 0.1.51

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.
@@ -52,7 +52,8 @@ export declare const HOTKEYS: {
52
52
  export declare enum EditorMode {
53
53
  EDITOR = "editor",
54
54
  STRAIGHT = "straight",
55
- REPORT = "report"
55
+ REPORT = "report",
56
+ PLAIN_TEXT = "plainText"
56
57
  }
57
58
  export declare const fontFamilies: {
58
59
  label: string;
@@ -129,7 +129,7 @@ export declare const useTiptapStore: () => {
129
129
  laserPointer?: boolean | undefined;
130
130
  } | undefined;
131
131
  }>;
132
- isFullscreen: globalThis.Ref<boolean, boolean>;
132
+ isFullscreen: vue_demi.Ref<boolean>;
133
133
  toggleFullscreen: () => Promise<void>;
134
134
  updateEditorState: (e: Editor) => void;
135
135
  setEditor: (editorInstance: Editor) => void;
@@ -1,2 +1,4 @@
1
- declare const convertContent: (html: string | object, isModeDisabled: boolean) => string | object;
1
+ import { EditorMode } from '../constants';
2
+
3
+ declare const convertContent: (html: string | object, isModeDisabled: boolean, mode?: EditorMode) => string | object;
2
4
  export { convertContent };