ant-design / ant-design-mobile

Essential UI blocks for building mobile web apps.
https://mobile.ant.design
MIT License
11.64k stars 2.4k forks source link

继承来自 rc-field-form 的更多的 props 类型 #6398

Open nnmax opened 1 year ago

nnmax commented 1 year ago

Version of antd-mobile

5.32.4

What is this feature about?

rc-field-form 导出了一个 RcFormProps 类型,此类型继承了 React.FormHTMLAttributes。因此它包含有原生 form 元素所支持的所有类型。

这不是一个破坏性改动,只需要小小的修改该行代码就能实现。比如完全继承 RcFormProps 或者使用 Omit<RcFormProps, 'someProps'> 语法来排除某些字段即可。