fx-platform-ui 0.0.13-alpha4 → 0.0.13-alpha5

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.
@@ -1 +0,0 @@
1
- export declare const platEditorEmits: string[];
@@ -1,37 +0,0 @@
1
- import { ExtractPropTypes } from 'vue';
2
- import { MediaSetting, ImageSetting } from './type';
3
- export declare const platEditorProps: {
4
- editorSetting: {
5
- type: ObjectConstructor;
6
- default: () => {};
7
- };
8
- mediaSetting: {
9
- type: PropType<MediaSetting>;
10
- default: () => {
11
- fileSizeLimit: number;
12
- fileTypeLimit: string[];
13
- fileNameLength: number;
14
- };
15
- };
16
- imageSetting: {
17
- type: PropType<ImageSetting>;
18
- default: () => {
19
- fileSizeLimit: number;
20
- fileTypeLimit: string[];
21
- fileNameLength: number;
22
- };
23
- };
24
- value: {
25
- type: StringConstructor;
26
- default: string;
27
- };
28
- disabled: {
29
- type: BooleanConstructor;
30
- default: boolean;
31
- };
32
- /** 附件请求函数 */
33
- fileRequest: {
34
- type: PropType<(file: any) => Promise<any>>;
35
- };
36
- };
37
- export declare type PlatEditorProps = ExtractPropTypes<typeof platEditorProps>;
@@ -1,10 +0,0 @@
1
- export interface MediaSetting {
2
- fileSizeLimit: number;
3
- fileTypeLimit: string;
4
- fileNameLength: string | number;
5
- }
6
- export interface ImageSetting {
7
- fileSizeLimit: number;
8
- fileTypeLimit: string;
9
- fileNameLength: string | number;
10
- }