UNPKG

jjb-lc-designable

Version:

基于alibaba-designable源码二次封装的表单设计器。

22 lines (20 loc) 456 B
import { ISchema } from 'jjb-lc-formily/react' export const Switch: ISchema = { type: 'object', properties: { autoFocus: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Switch', }, size: { type: 'string', enum: ['large', 'small', 'default', ''], 'x-decorator': 'FormItem', 'x-component': 'Select', 'x-component-props': { defaultValue: 'default', }, }, }, }