import type { PropertySetter } from "@/core/base/PropertyTypes.ts"; import { basicFieldsSetter } from "@/editor/widgets/property/PropertyPanelConstant.ts"; const propertySetter: PropertySetter = { flatten: { fields: [ ...basicFieldsSetter, { dataPath: 'dt.clxWidth', label: 'CLX宽度', input: 'InputNumber', inputProps: {}, }, { dataPath: 'dt.clxDepth', label: 'CLX深度', input: 'InputNumber', inputProps: {}, }, ], }, }; export default propertySetter;