@newview/file-ui 1.1.7 → 1.1.8
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/README.md +2 -3
- package/dist/file-ui.js +34 -3
- package/dist/file-ui.umd.cjs +1 -1
- package/package.json +1 -1
- package/types/ComFormUp.d.ts +19 -1
package/package.json
CHANGED
package/types/ComFormUp.d.ts
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
import type { DefineComponent } from 'vue';
|
|
2
2
|
|
|
3
3
|
export declare const NvComFormUp: DefineComponent<{
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* 保存文本
|
|
6
|
+
*/
|
|
7
|
+
saveTextData(): void;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* 删除文本
|
|
11
|
+
*/
|
|
12
|
+
deleteTextData(): void;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 清空长文本
|
|
16
|
+
*/
|
|
17
|
+
clearTextData(): void;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 删除文本
|
|
21
|
+
*/
|
|
22
|
+
deleteTextDataByToken(Token: string): void;
|
|
5
23
|
}>
|