You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
535 B
20 lines
535 B
import type { PropertySetter } from '@/core/base/PropertyTypes.ts'
|
|
import { basicFieldsSetter } from '@/editor/widgets/property/PropertyPanelConstant.ts'
|
|
|
|
const propertySetter: PropertySetter = {
|
|
flatten: {
|
|
fields: [
|
|
...basicFieldsSetter,
|
|
{
|
|
dataPath: 'dt.strokeColor', label: '边线颜色', input: 'ColorPicker',
|
|
inputProps: {}
|
|
},
|
|
{
|
|
dataPath: 'dt.strokeWidth', label: '边线宽度', input: 'InputNumber',
|
|
inputProps: {}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default propertySetter
|
|
|