import type { MetaContainerItem } from 'open-data-v/base' import { ComponentGroup, CustomComponent, FormType } from 'open-data-v/base' export const componentName = 'BorderBox5' class BorderBoxComponent extends CustomComponent { constructor(id?: string, name?: string) { super({ component: componentName, group: ComponentGroup.BORDER, name: name ? name : '5#边框', id, width: 200, height: 200 }) } _prop: MetaContainerItem[] = [ { label: '基础配置', prop: 'base', children: [ { prop: 'colorLeft', label: '边框颜色1', type: FormType.COLOR, props: { defaultValue: '#11eefd' } }, { prop: 'colorRight', label: '边框颜色2', type: FormType.COLOR, props: { defaultValue: '#0078d2' } }, { prop: 'backgroundColor', label: '底色', type: FormType.COLOR, props: { defaultValue: '#00000000' } } ] } ] _style: MetaContainerItem[] = [] } export default BorderBoxComponent