bto-md-editor 0.1.3 → 0.1.5

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,10 @@
1
+ type __VLS_Props = {
2
+ editor: any | null;
3
+ };
4
+ declare function openPanel(to?: 'find' | 'replace'): void;
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6
+ openPanel: typeof openPanel;
7
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
8
+ rootRef: HTMLDivElement;
9
+ }, HTMLDivElement>;
10
+ export default _default;
@@ -1,5 +1,5 @@
1
1
  type __VLS_Props = {
2
2
  editor: any | null;
3
3
  };
4
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
5
5
  export default _default;
@@ -3,6 +3,7 @@ export { default as ColorSelect } from './ColorSelect/index.vue';
3
3
  export { default as BackgroundColorSelect } from './BackgroundColorSelect/index.vue';
4
4
  export { default as InsertImg } from './InsertImg/index.vue';
5
5
  export { default as InsertVideo } from './InsertVideo/index.vue';
6
+ export { default as FindReplace } from './FindReplace/index.vue';
6
7
  export { default as InsertLink } from './InsertLink/index.vue';
7
8
  export { default as InsertTable } from './InsertTable/index.vue';
8
9
  export { default as TableTools } from './TableTools/index.vue';
@@ -12,10 +12,32 @@ type __VLS_Props = {
12
12
  videoUploader?: (file: File) => Promise<string>;
13
13
  imageUploader?: (file: File) => Promise<string>;
14
14
  uploadSizeLimit?: UploadSizeLimit;
15
+ fullscreen?: boolean;
15
16
  };
16
17
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
17
18
  openLinkModal: () => any;
19
+ toggleFullscreen: () => any;
18
20
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
21
  onOpenLinkModal?: (() => any) | undefined;
20
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ onToggleFullscreen?: (() => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
24
+ findRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
25
+ editor: any | null;
26
+ }> & Readonly<{}>, {
27
+ openPanel: (to?: "find" | "replace") => void;
28
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
29
+ rootRef: HTMLDivElement;
30
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
31
+ P: {};
32
+ B: {};
33
+ D: {};
34
+ C: {};
35
+ M: {};
36
+ Defaults: {};
37
+ }, Readonly<{
38
+ editor: any | null;
39
+ }> & Readonly<{}>, {
40
+ openPanel: (to?: "find" | "replace") => void;
41
+ }, {}, {}, {}, {}> | null;
42
+ }, HTMLDivElement>;
21
43
  export default _default;