UNPKG

jjb-lc-designable

Version:

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

62 lines (59 loc) 1.35 kB
import { ISchema } from 'jjb-lc-formily/react' export const FormCollapse: ISchema & { CollapsePanel?: ISchema } = { type: 'object', properties: { accordion: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Switch', }, collapsible: { type: 'string', enum: ['header', 'disabled'], 'x-decorator': 'FormItem', 'x-component': 'Radio.Group', 'x-component-props': { defaultValue: 'header', optionType: 'button', }, }, ghost: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Switch', }, bordered: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Switch', 'x-component-props': { defaultChecked: true, }, }, }, } FormCollapse.CollapsePanel = { type: 'object', properties: { collapsible: { type: 'string', enum: ['header', 'disabled'], 'x-decorator': 'FormItem', 'x-component': 'Radio.Group', 'x-component-props': { defaultValue: 'header', optionType: 'button', }, }, header: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Input', }, extra: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Input', }, }, }