@deskhero/dh_ui 2.26.0 → 2.27.0
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/components/TextEditor.vue.d.ts +3 -1
- package/dist/dh_ui.es.js +3089 -2970
- package/dist/dh_ui.umd.js +76 -76
- package/dist/style.css +1 -1
- package/dist/tools/editorFiles.d.ts +20 -24
- package/dist/tools/editorImage.d.ts +17 -22
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
reset: typeof reset;
|
|
6
6
|
editBlock: typeof editBlock;
|
|
7
7
|
render: typeof render;
|
|
8
|
+
getFilteredBlocks: typeof getFilteredBlocks;
|
|
8
9
|
$props: {
|
|
9
10
|
readonly data?: string | Record<string, any> | undefined;
|
|
10
11
|
readonly placeholder?: string | undefined;
|
|
@@ -21,7 +22,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
21
22
|
readonly isSuggestionReplyEnabled?: boolean | undefined;
|
|
22
23
|
readonly suggestionReplyTitle?: string | undefined;
|
|
23
24
|
};
|
|
24
|
-
$emit: (event: "change" | "blockMoved" | "blockRemoved", ...args: any[]) => void;
|
|
25
|
+
$emit: (event: "change" | "blockMoved" | "blockRemoved" | "fileUpload" | "fileDelete", ...args: any[]) => void;
|
|
25
26
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
26
27
|
export default _default;
|
|
27
28
|
declare function toggleReadOnly(): void;
|
|
@@ -29,3 +30,4 @@ declare function save(): any;
|
|
|
29
30
|
declare function reset(): void;
|
|
30
31
|
declare function editBlock(index: any): void;
|
|
31
32
|
declare function render(data: any): void;
|
|
33
|
+
declare function getFilteredBlocks(): any;
|