export default [ { title: '自定义选项卡', schema: { componentName: 'PisellCustomCheckboxGroup', props: { disabled: false, allowAdd: false, dataSource: [ { id: 1, text: "Racing car sprays burning fuel into crowd.", }, { id: 2, text: "Japanese princess to wed commoner.", }, { id: 3, text: "Australian walks 100km after outback crash.", }, { id: 4, text: "Man charged over missing wedding girl.", }, { id: 5, text: "Los Angeles battles huge wildfires.", }, ], columns: 3, horizontalGap: 10, verticalGap: 10, renderItem: { type: "JSSlot", params: ["item"], value: [ { componentName: "List.Item", props: {}, children: { componentName: "Typography.Text", props: { children: { type: "JSExpression", value: "this.item.text", }, }, }, }, ], }, }, }, }, ];