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
606 B
20 lines
606 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: 'CLX宽度', input: 'InputNumber',
|
|
inputProps: {},
|
|
},
|
|
{
|
|
dataPath: 'dt.clxDepth', label: 'CLX深度', input: 'InputNumber',
|
|
inputProps: {},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default propertySetter;
|
|
|