@halo-dev/richtext-editor 0.0.0-alpha.23 → 0.0.0-alpha.25
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.
|
@@ -33,11 +33,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
};
|
|
34
34
|
}, {
|
|
35
35
|
props: any;
|
|
36
|
-
src: import("vue").
|
|
36
|
+
src: import("vue").WritableComputedRef<any>;
|
|
37
37
|
alt: import("vue").WritableComputedRef<any>;
|
|
38
38
|
width: import("vue").WritableComputedRef<any>;
|
|
39
39
|
height: import("vue").WritableComputedRef<any>;
|
|
40
40
|
resizeRef: import("vue").Ref<HTMLElement>;
|
|
41
|
+
mounted: boolean;
|
|
41
42
|
reuseResizeObserver: () => {
|
|
42
43
|
isSupported: import("vue").Ref<boolean>;
|
|
43
44
|
stop: () => void;
|
|
@@ -46,7 +47,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
46
47
|
isSupported: import("vue").Ref<boolean>;
|
|
47
48
|
stop: () => void;
|
|
48
49
|
};
|
|
50
|
+
resetResizeObserver: () => void;
|
|
49
51
|
handleSetSize: (width: string, height: string) => void;
|
|
52
|
+
handleSetFocus: () => void;
|
|
50
53
|
handleOpenLink: () => void;
|
|
51
54
|
readonly NodeViewWrapper: import("vue").DefineComponent<{
|
|
52
55
|
as: {
|
|
@@ -65,7 +68,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
65
68
|
BlockActionButton: any;
|
|
66
69
|
BlockActionSeparator: any;
|
|
67
70
|
BlockActionInput: any;
|
|
71
|
+
readonly VDropdown: any;
|
|
68
72
|
readonly MdiLinkVariant: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}>;
|
|
73
|
+
readonly MdiShare: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}>;
|
|
69
74
|
readonly MdiImageSizeSelectActual: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}>;
|
|
70
75
|
readonly MdiImageSizeSelectSmall: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}>;
|
|
71
76
|
readonly MdiImageSizeSelectLarge: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}>;
|