@hbtv/style-input
v1.0.11
Published
适用于 ant-design 4.x Form 的 样式编辑器
Downloads
2
Keywords
Readme
@hbtv/style-editor
安装方法
yarn add @hbtv/style-editor@latest
使用方法
import { Form, Card } from 'antd';
import StyleInput, { StyleEditor } from './index';
const UsageInput = () => {
const [form] = Form.useForm();
// 可以使用form 各种方法
return (
<Form form={form}>
<Form.Item name="style" label="样式">
<StyleInput />
</Form.Item>
</Form>
);
}
API
// 适用于 FormItem 的 StyleInput
export interface StyleInputProps {
allowStyle?: string[]; // 允许的样式 background | flex | font | border | sizePosition
style?: CSSProperties; // 额外样式
uploadServices?: ServicesType; // 上传服务
value?: CSSProperties; // 值
onChange?: (newValue: any) => void; // onChange时间
}