import { BasicProps, BasicState, EditSetting } from '../type' export class Props extends BasicProps { public editSetting: EditSetting = { key: 'gaea-lofterTitleAndMore', name: 'lofter标题+更多模块', isContainer: false, isAutoHeight: true, defaultPosition: { top: '0', left: '0' }, type: ['common', 'lofter'], editors: [ { field: 'title', text: '标题', type: 'string' }, { field: 'color', text: '标题字体颜色', type: 'color' }, { field: 'bold', text: '标题是否加粗', type: 'boolean' }, { field: 'moreTitle', text: '更多文案', type: 'string', placeholder: '默认:更多' }, { field: 'moreLink', text: '更多链接', type: 'string', }, { field: 'marginTop', text: '模块上间距', type: 'number' } ] }; public title = ''; public color: string = '#1F1F1F'; public bold: boolean = true; public moreTitle = '更多'; public moreLink = ''; public marginTop = 0; } export class State extends BasicState { }