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.
 
 
 

24 lines
742 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.clxWidth', label: 'CC5宽度', input: 'InputNumber',
inputProps: {},
},
{
dataPath: 'dt.clxDepth', label: 'CC5深度', input: 'InputNumber',
inputProps: {},
},
{
dataPath: 'state', label: 'CC5控制', input: 'PtrController',
inputProps: {},
},
],
},
};
export default propertySetter;