UNPKG

jjb-lc-designable

Version:

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

39 lines 857 B
export const Space = { type: 'object', properties: { align: { type: 'string', enum: ['start', 'end', 'center', 'baseline'], 'x-decorator': 'FormItem', 'x-component': 'Select' }, direction: { type: 'string', enum: ['vertical', 'horizontal'], 'x-decorator': 'FormItem', 'x-component': 'Radio.Group', 'x-component-props': { defaultValue: 'horizontal', optionType: 'button' } }, size: { type: 'number', 'x-decorator': 'FormItem', 'x-component': 'NumberPicker', 'x-component-props': { defaultValue: 8 } }, split: { type: 'string', 'x-decorator': 'FormItem', 'x-component': 'Input' }, wrap: { type: 'boolean', 'x-decorator': 'FormItem', 'x-component': 'Switch' } } };