vdc-editor 0.1.74 → 0.1.76

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.
@@ -1,15 +1,17 @@
1
1
  import { Editor } from '@tiptap/vue-3';
2
2
 
3
3
  declare function insertSpecialCharater(char: any): void;
4
+ declare function toggleSpellCheck(): void;
4
5
  declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
6
  modelValue: string;
6
7
  parentEditor?: Editor | null;
7
8
  isReadOnly?: boolean;
8
9
  }>, {
9
10
  modelValue: string;
10
- parentEditor: null;
11
11
  }>>, {
12
12
  insertSpecialCharater: typeof insertSpecialCharater;
13
+ isChecked: globalThis.Ref<boolean, boolean>;
14
+ toggleSpellCheck: typeof toggleSpellCheck;
13
15
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
16
  "update:modelValue": (value: string) => void;
15
17
  }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
@@ -18,12 +20,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
18
20
  isReadOnly?: boolean;
19
21
  }>, {
20
22
  modelValue: string;
21
- parentEditor: null;
22
23
  }>>> & Readonly<{
23
24
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
24
25
  }>, {
25
26
  modelValue: string;
26
- parentEditor: Editor | null;
27
27
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
28
28
  export default _default;
29
29
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,3 +1,3 @@
1
- export declare function useEditorLayoutMobile(editorRef: any, isHideToolbar: any, autoResize?: boolean, toolbarHeight?: number): {
1
+ export declare function useEditorLayoutMobile(editorRef: any, isHideToolbar: any, propsHeight: any, autoResize?: boolean, toolbarHeight?: number): {
2
2
  wrapHeight: globalThis.Ref<number, number>;
3
3
  };