@ywfe/materials-design
Version:
YwDesign for lowcode
15 lines • 439 B
JavaScript
import { default as formItemProps } from "../yw-json-form/common/form-item-props";
export var wrapFormItemProps = function wrapFormItemProps(props) {
return [].concat(formItemProps, [{
name: 'componentProps',
title: '组件配置',
extraProps: {
display: 'accordion',
defaultCollapsed: true
},
type: 'group',
items: props.filter(function (item) {
return item.title !== '高级';
})
}]);
};