Aaron_Zhou

Results 4 issues of Aaron_Zhou

When `click` is `true` in configuration, right click fires left click event incorrectly. I fix the problem by adding the `MouseEvent.button` and `MouseEvent.buttons`(just in case) to the constructed mouse event.

## Current behavior Every time I run `npm start`, type checking for the first time costs over 40s. It seems incremental mode is not working. Is it a bug? fork-ts-checker-webpack-plugin...

bug

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 我留意到在 #5914 中提到`ProFormList`已经支持了`transform`,但发现在第一次提交时没有触发`transform` ### 📷 复现步骤 [复现链接](https://stackblitz.com/edit/vitejs-vite-osr618?file=src%2FApp.tsx),可以看到第一次点击提交时控制台没有打印`transform` ### © 版本信息 - "@ant-design/pro-form": "^2.29.0" - 浏览器环境 Chrome 126.0.0.0 ### 🚑 其他信息

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🔩 所属模块或组件 `ProFormList` ### 🥰 需求描述 目前`ProFormList`已经支持`transform`,希望可以支持`convertValue`,在回填之前转换数据。 ### ⛰ 功能需求适用场景 `ProFormList`的值默认是数组,如`[ { key: 'text1', value: 'hello' }, { key: 'text2', value: 'hi' } ]`,如果后端需要对象类型,如`{ text1: 'hello', text2:...