@deskhero/dh_ui 2.27.1 → 2.28.1
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 +2 -0
- package/dist/dh_ui.es.js +2745 -2684
- package/dist/dh_ui.umd.js +79 -79
- package/dist/tools/editorFiles.d.ts +1 -0
- package/dist/tools/editorImage.d.ts +21 -1
- 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
|
+
update: typeof update;
|
|
8
9
|
getFilteredBlocks: typeof getFilteredBlocks;
|
|
9
10
|
$props: {
|
|
10
11
|
readonly data?: string | Record<string, any> | undefined;
|
|
@@ -30,4 +31,5 @@ declare function save(): any;
|
|
|
30
31
|
declare function reset(): void;
|
|
31
32
|
declare function editBlock(index: any): void;
|
|
32
33
|
declare function render(data: any): void;
|
|
34
|
+
declare function update(id: any, data: any): void;
|
|
33
35
|
declare function getFilteredBlocks(): any;
|