pro-components icon indicating copy to clipboard operation
pro-components copied to clipboard

🏆 Use Ant Design like a Pro!

Results 761 pro-components issues
Sort by recently updated
recently updated
newest added

### 🧐 问题描述 ### 💻 示例代码 请问ProFormSelect是否有相应的处理机制?

### 🧐 问题描述 ProTable defaultSize="small",但是上面的toolbar仍然很高,看了下padding=16,怎么让toolbar变窄或者跟随small模式。 ### 💻 示例代码 ```

1、Schema Form引入方法: import { BetaSchemaForm } from '@ant-design/pro-components'; 请问这个Beta是一般理解的那个Beta么?也就是说是个实验性质的功能? 2、有没有官方builder/editor? 刚接触ProCom,问题有点初级,见谅

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 if table has nested header , hiding nesting columns won't work ### 📷 复现步骤 ### 🏞 期望结果 ![image](https://github.com/ant-design/pro-components/assets/64529155/23016ac6-0a7f-47ee-a130-61fbb2647a80) ### 💻 复现代码 columns looks like...

### 🧐 问题描述 使用了ProTable中column的valueType='image', 如何可以改变row的record的值, 或者设置一个base url? 因为项目作为SPA部署到子目录了, 所以图片的路径需要再格式化一下, 除了在request获取数据的地方做处理这一种方法外, 在columns定义上有没有API做这样的处理? ### 💻 示例代码 ### 🚑 其他信息

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 ### 📷 复现步骤 ``` { if (v) { const s = dayjs(v[0]).unix(); const e = dayjs(v[1]).unix(); return [s, e]; } return { contract_date: [],...

提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🐛 bug 描述 EditableProTable 结合 proForm 使用,在表格头部插入数据时,导致其他数据丢失 ### 📷 复现步骤 ### 🏞 期望结果 ### 💻 复现代码 参考 [sandbox](https://codesandbox.io/s/yu-formitem-pei-he-forked-9end0b?file=/App.tsx) ### © 版本信息 - ProComponents 版本: [e.g. 4.0.0] -...

⭕️ bug
table
AI Reply

### 🐛 bug 描述 When building a project with `@ant-design/pro-components`, we are getting `Cannot find module 'history' or its corresponding type declarations.` ### 📷 复现步骤 ```bash git clone https://github.com/maifeeulasad/react-pipeline.git git...

### 🐛 bug 描述 1、ProTable组件columnsState 设置 persistenceType 后初次加载会触发 onChange,不设置persistenceType时初次加载不会触发 onChange 事件 2、当设置value通过受控方式设置列状态时,初次加载触发onChange事件,如果storage里还没有缓存persistenceKey对应的内容,onChange回调获得的值非value设置的值,而是所有列字段 { "show": true },随后storage里缓存的列状态对象设置成value对应的值 ### 📷 复现步骤 1、设置columnsState的persistenceType、persistenceKey、value、onChange(console.log打印获得的列状态value) 2、清空persistenceType对应的storage 3、加载组件 ### 🏞 期望结果 在设置persistenceKey、persistenceType、value前提下 1、初次加载时,并未通过界面操作改变列状态,不希望触发onChange事件 2、可以接受加载时触发onChange事件,但希望获得的值是value对应的值,而不是所有列字段 { "show":...

ProTable 中的tableExtraRender生成的dom,我想基于protable的查询参数,请求接口渲染数据。