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.
16 lines
470 B
16 lines
470 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.chargerPortDirection', label: '充口方向', input: 'Input',
|
|
inputProps: {},
|
|
}
|
|
],
|
|
},
|
|
};
|
|
|
|
export default propertySetter;
|
|
|