Files
xin-procurement/web/components/XinFormField/RichTextEditor/typings.ts
T

45 lines
609 B
TypeScript

/**
* 富文本编辑器组件属性
*/
export interface RichTextEditorProps {
/**
* 当前值(HTML 字符串)
*/
value?: string;
/**
* 值变化回调
* @param value HTML 字符串
*/
onChange?: (value?: string) => void;
/**
* 是否禁用
* @default false
*/
disabled?: boolean;
/**
* 编辑器高度 (px)
* @default 400
*/
height?: number;
/**
* 占位符
*/
placeholder?: string;
/**
* 上传文件分组 ID
* @default 0
*/
groupId?: number;
/**
* 图片大小限制 (MB)
* @default 5
*/
maxSize?: number;
}