cactuser-Lu
cactuser-Lu
Please make sure these boxes are checked before submitting your PR, thank you! - [x] Make sure you follow contributing guide [English](https://github.com/element-plus/element-plus/blob/master/.github/CONTRIBUTING.en-US.md) | ([中文](https://github.com/element-plus/element-plus/blob/master/.github/CONTRIBUTING.zh-CN.md) | [Español](https://github.com/element-plus/element-plus/blob/master/.github/CONTRIBUTING.es.md) | [Français](https://github.com/element-plus/element-plus/blob/master/.github/CONTRIBUTING.fr-FR.md)). - [x]...
chore: Bump react-draggable from 4.4.3 to 4.5.0 ## Summary by CodeRabbit ## 发布说明 * **依赖更新** * 升级可拖拽功能库至最新版本 * **文档改进** * 优化示例代码实现,改进拖拽功能的集成方式 ✏️ Tip: You can customize this high-level summary in...
fix: https://github.com/ant-design/ant-design/issues/54884 related issiue: https://github.com/ant-design/ant-design/issues/53752 related PR: https://github.com/react-component/select/pull/1146 问题分析: OptionList 中:使用 startsWith + 硬编码 data.value useFilterOptions 中:使用 includes + 大小写不敏感 过滤逻辑 (useFilterOptions) 和 定位逻辑 (OptionList)应该一致 ## Summary by CodeRabbit -...
fix: prevent array bounds error in getColumnWidth calculation 当colSpan过大时,getColumnWidth 中数组越界,将产生样式错乱 ## Summary by CodeRabbit ## 发布说明 * **优化改进** * 改进了列宽度计算的内部逻辑,增强了边界验证和数据安全性。 * 优化了多列跨度场景下的计算准确性。
在使用 rc-table 时,当列标题包含 id、data-testid 等唯一标识符时,由于 MeasureRow 会复制列标题内容,会导致 DOM 中出现重复的标识符,这违反了 HTML 规范并可能影响测试和可访问性。 fix: https://github.com/ant-design/ant-design/issues/55244 ## Summary by CodeRabbit - **Bug Fixes** - 自动清理度量行 DOM 中的重复 ID 与多余 data-* 属性,避免测试与组件间冲突导致的问题。 - 优化列变更时的布局更新时机,减少闪烁与错位现象。...
fix: https://github.com/ant-design/ant-design/issues/54860 对于以下代码,当0、1列为固定列,且使用 onCell 进行表格列合并时,存在一个问题: ``` //第0列 onCell: (_, index) => ({ colSpan: index === 1 ?0 : 1, }), //第1列 onCell: (_, index) => ({ colSpan: index === 1...