fix(table): fix row hover with expanded offset rowSpan - #1488
Conversation
|
@jiangrong-devops is attempting to deploy a commit to the React Component Team on Vercel. A member of the Team first needs to authorize it. |
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
Walkthrough该 PR 保存展开行偏移前的 Changes展开行悬停范围修复
Estimated code review effort: 3 (Moderate) | ~20 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches 💡 1🛠️ Fix failing CI checks 💡
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request introduces a fix to ensure that row hover states remain accurate when expanded row offsets are used in the table. It adds a 'hoverRowSpan' property to handle row span calculations independently from the layout row span, which is modified by expanded rows. The changes are implemented across 'BodyRow', 'Cell', and 'VirtualCell' components, and verified with a new test case in 'Hover.spec.tsx'. I have no feedback to provide as there were no review comments.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1488 +/- ##
=======================================
Coverage 99.05% 99.05%
=======================================
Files 45 45
Lines 1372 1374 +2
Branches 411 412 +1
=======================================
+ Hits 1359 1361 +2
Misses 13 13 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Respect legacy render rowSpan when calculating hover ranges and avoid mutating objects returned by onCell. Add regression coverage for legacy cells, stable props, StrictMode, and expanded row rerenders.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@tests/Hover.spec.tsx`:
- Around line 190-238: Update the test case “keeps legacy render rowSpan
priority for hover range” to render an expanded row before asserting hover
behavior, using the existing expandable configuration and a supported expansion
mechanism such as expandedRowKeys or defaultExpandAllRows. Keep the legacy
rowSpan assertions and expandedRowOffset setup intact so the test covers hover
ranges after the physical expanded row is inserted.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: 3d0c9609-8631-4244-9fa8-5d3c6ff82688
📒 Files selected for processing (3)
src/Body/BodyRow.tsxsrc/Cell/index.tsxtests/Hover.spec.tsx
🚧 Files skipped from review as they are similar to previous changes (2)
- src/Body/BodyRow.tsx
- src/Cell/index.tsx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
src/VirtualTable/VirtualCell.tsx (1)
60-66: 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win在虚拟表格的
getCellProps中传入expandedRowOffset。
VirtualCell现在读取并转发originRowSpan,但调用缺少expandedRowOffset,导致该虚拟行路径始终使用默认值0,originRowSpan不会被计算。支持带偏移展开行的rowSpan时,需从虚拟行状态传入该值,并增加覆盖测试。🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@src/VirtualTable/VirtualCell.tsx` around lines 60 - 66, Update VirtualCell’s getCellProps call to pass expandedRowOffset from the virtual row state so expanded-row rowSpan calculations use the actual offset instead of 0; add coverage for a virtual row with an expansion offset and originRowSpan.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@src/VirtualTable/VirtualCell.tsx`:
- Around line 60-66: Update VirtualCell’s getCellProps call to pass
expandedRowOffset from the virtual row state so expanded-row rowSpan
calculations use the actual offset instead of 0; add coverage for a virtual row
with an expansion offset and originRowSpan.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: 276e1c73-301f-41c2-bd72-2c8e89e0f5f5
📒 Files selected for processing (3)
src/Body/BodyRow.tsxsrc/Cell/index.tsxsrc/VirtualTable/VirtualCell.tsx
Scanned all 43 configured upstreams. The other 38 carried only `ci: fix React Doctor workflow` commits (verified to touch `.github/` only) and version bumps, so nothing to port there. select: - allow clearing the value via keyboard (react-component/select#1247). The clear button was already ported as an accessible <button>, but BaseSelect's Enter/Space handler preventDefault()-ed the native activation, so the click never fired. table: - support `forceRender` on expandable rows (rc-table 1.11.0), for both the plain and virtual body. - stop mutating the object returned by `column.onCell()`, the remaining gap from react-component/table#1488. The hover rowSpan part of that PR was already covered locally by 0365d60. - fix `Table.EXPAND_COLUMN` identity checks against Vue reactive proxies. `toRaw()` is now used before comparison: previously a `ref()`/`reactive()` column list made every `=== EXPAND_COLUMN` check fail, which both auto-inserted a second expand column at index 0 and rendered the user's sentinel as a phantom empty column. tree: - support `autoExpand` in `scrollTo`, plus the new `useTree` hook exposing `getPath` (react-component/tree#1061). `autoExpand` is guarded at the call site rather than inside `setExpandedKeys`, so the guard reverted in 5fe098f is not reintroduced. - add `-treenode-unselectable` class for non-checkable, non-selectable nodes (react-component/tree#1066). - add characterization tests pinning controlled `expandedKeys` behaviour, which deviates from upstream at three call sites as a consequence of 5fe098f. tree-select: - preserve disabled child selection under SHOW_PARENT (react-component/tree-select#681). virtual-list: - resolve `scrollTo({ key })` against the latest data and retry after a data update (react-component/virtual-list#376, #377). An unresolved key no longer scrolls the list to the top. Also adds the missing `@v-c/select` path alias, which unblocks `tree-select/tests/OptionList.test.tsx` (previously failing to collect), and registers @rc-component/listy as an upstream — it is already in sync at 1.2.3. Test suite: 785 passing (was 750), 26 pre-existing failures unchanged (steps, collapse, mutate-observer, cascader). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
> ℹ️ **Note**
>
> This PR body was truncated due to platform limits.
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [antd](https://ant.design)
([source](https://redirect.github.com/ant-design/ant-design)) | [`6.5.0`
→ `6.6.1`](https://renovatebot.com/diffs/npm/antd/6.5.0/6.6.1) |

|

|
---
### Release Notes
<details>
<summary>ant-design/ant-design (antd)</summary>
###
[`v6.6.1`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.6.1)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.6.0...6.6.1)
- ♿ Improve localized accessible names for Upload actions and Modal and
Notification close buttons.
[#​58953](https://redirect.github.com/ant-design/ant-design/pull/58953)
[#​58957](https://redirect.github.com/ant-design/ant-design/pull/58957)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🌐 Improve Traditional Chinese terminology across localized components
and use Taiwan-preferred week wording in DatePicker.
[#​58947](https://redirect.github.com/ant-design/ant-design/pull/58947)
[#​58951](https://redirect.github.com/ant-design/ant-design/pull/58951)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🐞 Fix Upload dropping newly added files when async `onRemove`
resolves.
[#​58814](https://redirect.github.com/ant-design/ant-design/pull/58814)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 Fix Anchor triggering duplicate `onChange` callbacks on scroll when
using `getCurrentAnchor`.
[#​58834](https://redirect.github.com/ant-design/ant-design/pull/58834)
[@​nikzanda](https://redirect.github.com/nikzanda)
- Form
- 🐞 Fix Form height fluctuation during rapid validation state changes.
[#​59008](https://redirect.github.com/ant-design/ant-design/pull/59008)
[@​waterWang](https://redirect.github.com/waterWang)
- 🐞 Fix Form vertical layout `labelCol.offset` being overridden by label
margins.
[#​58981](https://redirect.github.com/ant-design/ant-design/pull/58981)
[@​nikzanda](https://redirect.github.com/nikzanda)
- ♿ Improve Form complex-control guidance so labels can be explicitly
associated with nested controls.
[#​59001](https://redirect.github.com/ant-design/ant-design/pull/59001)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 📝 Correct Form.Item `required` documentation to clarify that
validation rules infer the required state when unset.
[#​58989](https://redirect.github.com/ant-design/ant-design/pull/58989)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Listy
- 💄 Improve Listy virtual scrollbar track hover feedback.
[#​58964](https://redirect.github.com/ant-design/ant-design/pull/58964)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 📝 Add List-to-Listy migration guidance for deprecated List, covering
item rendering, virtual scrolling, and common replacement patterns.
[#​58985](https://redirect.github.com/ant-design/ant-design/pull/58985)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- 📝 Add Listy drag-sorting demo.
[#​58962](https://redirect.github.com/ant-design/ant-design/pull/58962)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- Menu
- 🐞 Fix Menu icons jittering when expanding or collapsing an inline
menu.
[#​59018](https://redirect.github.com/ant-design/ant-design/pull/59018)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 Fix Menu tooltip flashing when an inline menu collapses while an
item is hovered.
[#​58865](https://redirect.github.com/ant-design/ant-design/pull/58865)
[@​QdabuliuQ](https://redirect.github.com/QdabuliuQ)
- Table
- 🐞 Fix Table first-row corners when `bordered` is enabled and
`showHeader` is `false`.
[#​57035](https://redirect.github.com/ant-design/ant-design/pull/57035)
[@​Largopie](https://redirect.github.com/Largopie)
- 🐞 Fix Table row hover highlighting incorrect cells when expanded rows
offset `rowSpan` ranges.
[#​58935](https://redirect.github.com/ant-design/ant-design/pull/58935)
[react-component/table#1488](https://redirect.github.com/react-component/table/pull/1488)
[@​jiangrong-devops](https://redirect.github.com/jiangrong-devops)
- Transfer
- 🐞 Fix Transfer triggering `onSearch` twice when clearing the search
input.
[#​59016](https://redirect.github.com/ant-design/ant-design/pull/59016)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Transfer one-way item actions not respecting `locale.remove`.
[#​58955](https://redirect.github.com/ant-design/ant-design/pull/58955)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🇮🇸🇲🇳 Fix invalid placeholders in Form minimum-value validation
messages for the Icelandic and Mongolian locales.
[#​58965](https://redirect.github.com/ant-design/ant-design/pull/58965)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🆕 Add Carousel localized accessible names for the default previous and
next arrows via ConfigProvider `locale`.
[#​59014](https://redirect.github.com/ant-design/ant-design/pull/59014)
[@​waterWang](https://redirect.github.com/waterWang)
- ♿ Improve DatePicker.RangePicker screen-reader experience by hiding
its decorative default separator while preserving custom separator
accessibility.
[#​58999](https://redirect.github.com/ant-design/ant-design/pull/58999)
[@​nrps9909](https://redirect.github.com/nrps9909)
- ♿ Improve Collapse screen-reader experience by hiding redundant labels
from decorative default expand icons while preserving accessible names
for interactive icon triggers.
[#​59000](https://redirect.github.com/ant-design/ant-design/pull/59000)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🐞 Fix TreeSelect `SHOW_PARENT` losing selected disabled child nodes in
controlled mode.
[#​58935](https://redirect.github.com/ant-design/ant-design/pull/58935)
[react-component/tree-select#681](https://redirect.github.com/react-component/tree-select/pull/681)
[@​zombieJ](https://redirect.github.com/zombieJ)
- ⌨️ Fix Select clear buttons not clearing values when activated with
Enter or Space.
[#​58958](https://redirect.github.com/ant-design/ant-design/pull/58958)
[react-component/select#1247](https://redirect.github.com/react-component/select/pull/1247)
[@​Pareder](https://redirect.github.com/Pareder)
- 🐞 Fix AutoComplete with custom input and `allowClear` shifting its
content on hover.
[#​58932](https://redirect.github.com/ant-design/ant-design/pull/58932)
[@​lazerg](https://redirect.github.com/lazerg)
- 🐞 Fix FloatButton.BackTop progress ring border being overridden before
its initial display on some pages.
[#​58982](https://redirect.github.com/ant-design/ant-design/pull/58982)
[@​ZQDesigned](https://redirect.github.com/ZQDesigned)
- 🐞 Fix ColorPicker becoming unable to drag after double-clicking the
clear button.
[#​58995](https://redirect.github.com/ant-design/ant-design/pull/58995)
[@​dogledogle](https://redirect.github.com/dogledogle)
- 🐞 Fix Radio.Group options not invoking an option's `onChange` callback
when selected.
[#​59010](https://redirect.github.com/ant-design/ant-design/pull/59010)
[@​moon6967](https://redirect.github.com/moon6967)
- 💄 Improve BorderBeam beam radius synchronization with dynamic
container `border-radius` changes.
[#​58923](https://redirect.github.com/ant-design/ant-design/pull/58923)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 📝 Correct Typography editable `onChange` documentation to clarify that
it fires when editing is completed.
[#​59021](https://redirect.github.com/ant-design/ant-design/pull/59021)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
***
- ♿ 优化 Upload 操作按钮以及 Modal 和 Notification
关闭按钮的本地化无障碍名称。[#​58953](https://redirect.github.com/ant-design/ant-design/pull/58953)
[#​58957](https://redirect.github.com/ant-design/ant-design/pull/58957)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🌐 优化多个组件的繁体中文术语,并将 DatePicker
的周选择提示调整为台湾地区惯用说法。[#​58947](https://redirect.github.com/ant-design/ant-design/pull/58947)
[#​58951](https://redirect.github.com/ant-design/ant-design/pull/58951)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🐞 修复 Upload 异步 `onRemove`
完成时误删新加入文件的问题。[#​58814](https://redirect.github.com/ant-design/ant-design/pull/58814)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 修复 Anchor 使用 `getCurrentAnchor` 时滚动会重复触发 `onChange`
的问题。[#​58834](https://redirect.github.com/ant-design/ant-design/pull/58834)
[@​nikzanda](https://redirect.github.com/nikzanda)
- Form
- 🐞 修复 Form
在快速校验状态变化时高度抖动的问题。[#​59008](https://redirect.github.com/ant-design/ant-design/pull/59008)
[@​waterWang](https://redirect.github.com/waterWang)
- 🐞 修复 Form 垂直布局中标签外边距覆盖 `labelCol.offset`
的问题。[#​58981](https://redirect.github.com/ant-design/ant-design/pull/58981)
[@​nikzanda](https://redirect.github.com/nikzanda)
- ♿ 改进 Form
复杂控件指引,支持将标签明确关联到内层控件。[#​59001](https://redirect.github.com/ant-design/ant-design/pull/59001)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 📝 修正 Form.Item `required`
文档,明确未设置时会根据校验规则推断必填状态。[#​58989](https://redirect.github.com/ant-design/ant-design/pull/58989)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Listy
- 💄 优化 Listy 虚拟滚动条轨道的 hover
反馈。[#​58964](https://redirect.github.com/ant-design/ant-design/pull/58964)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 📝 为已废弃的 List 补充迁移至 Listy
的指引,涵盖条目渲染、虚拟滚动和常见替代方案。[#​58985](https://redirect.github.com/ant-design/ant-design/pull/58985)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- 📝 新增 Listy
拖拽排序示例。[#​58962](https://redirect.github.com/ant-design/ant-design/pull/58962)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- Menu
- 🐞 修复 Menu
内联菜单展开或收起时图标抖动的问题。[#​59018](https://redirect.github.com/ant-design/ant-design/pull/59018)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 修复 Menu 内联菜单在菜单项 hover 时收起会导致 Tooltip
闪烁的问题。[#​58865](https://redirect.github.com/ant-design/ant-design/pull/58865)
[@​QdabuliuQ](https://redirect.github.com/QdabuliuQ)
- Table
- 🐞 修复 Table 开启 `bordered` 且 `showHeader` 为 `false`
时首行圆角异常的问题。[#​57035](https://redirect.github.com/ant-design/ant-design/pull/57035)
[@​Largopie](https://redirect.github.com/Largopie)
- 🐞 修复 Table 展开行导致 `rowSpan` 范围偏移时行 hover
高亮单元格不正确的问题。[#​58935](https://redirect.github.com/ant-design/ant-design/pull/58935)
[react-component/table#1488](https://redirect.github.com/react-component/table/pull/1488)
[@​jiangrong-devops](https://redirect.github.com/jiangrong-devops)
- Transfer
- 🐞 修复 Transfer 清空搜索输入框时重复触发 `onSearch`
的问题。[#​59016](https://redirect.github.com/ant-design/ant-design/pull/59016)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Transfer 单向模式的项目移除按钮未正确使用 `locale.remove`
的问题。[#​58955](https://redirect.github.com/ant-design/ant-design/pull/58955)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🇮🇸🇲🇳 修复冰岛语和蒙古语 Form
最小值校验消息中的无效占位符。[#​58965](https://redirect.github.com/ant-design/ant-design/pull/58965)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🆕 新增 Carousel 默认前后翻页箭头的本地化无障碍名称,可通过 ConfigProvider `locale`
配置。[#​59014](https://redirect.github.com/ant-design/ant-design/pull/59014)
[@​waterWang](https://redirect.github.com/waterWang)
- ♿ 优化 DatePicker.RangePicker
的读屏体验,隐藏无语义的默认分隔符,同时保留自定义分隔符的可访问性。[#​58999](https://redirect.github.com/ant-design/ant-design/pull/58999)
[@​nrps9909](https://redirect.github.com/nrps9909)
- ♿ 优化 Collapse
的读屏体验,隐藏装饰性默认展开图标的冗余标签,同时保留可交互图标触发器的无障碍名称。[#​59000](https://redirect.github.com/ant-design/ant-design/pull/59000)
[@​nrps9909](https://redirect.github.com/nrps9909)
- 🐞 修复 TreeSelect 受控模式下 `SHOW_PARENT`
丢失已选中的禁用子节点的问题。[#​58935](https://redirect.github.com/ant-design/ant-design/pull/58935)
[react-component/tree-select#681](https://redirect.github.com/react-component/tree-select/pull/681)
[@​zombieJ](https://redirect.github.com/zombieJ)
- ⌨️ 修复通过 Enter 或空格键激活 Select
清除按钮时未清空选中值的问题。[#​58958](https://redirect.github.com/ant-design/ant-design/pull/58958)
[react-component/select#1247](https://redirect.github.com/react-component/select/pull/1247)
[@​Pareder](https://redirect.github.com/Pareder)
- 🐞 修复 AutoComplete 自定义输入组件配合 `allowClear` 时 hover
导致内容偏移的问题。[#​58932](https://redirect.github.com/ant-design/ant-design/pull/58932)
[@​lazerg](https://redirect.github.com/lazerg)
- 🐞 修复 FloatButton.BackTop
的进度环边框在部分页面首次显示前被覆盖的问题。[#​58982](https://redirect.github.com/ant-design/ant-design/pull/58982)
[@​ZQDesigned](https://redirect.github.com/ZQDesigned)
- 🐞 修复 ColorPicker
双击清除按钮后无法拖动选色的问题。[#​58995](https://redirect.github.com/ant-design/ant-design/pull/58995)
[@​dogledogle](https://redirect.github.com/dogledogle)
- 🐞 修复 Radio.Group 使用 `options` 时选择选项不会触发选项 `onChange`
回调的问题。[#​59010](https://redirect.github.com/ant-design/ant-design/pull/59010)
[@​moon6967](https://redirect.github.com/moon6967)
- 💄 优化 BorderBeam 流光圆角,使其随容器 `border-radius`
的动态变化同步更新。[#​58923](https://redirect.github.com/ant-design/ant-design/pull/58923)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 📝 修正 Typography 可编辑模式 `onChange`
文档,明确其在编辑完成时触发。[#​59021](https://redirect.github.com/ant-design/ant-design/pull/59021)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
###
[`v6.6.0`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.6.0)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.5.4...6.6.0)
- 🔥 Add Listy component for high-performance virtualized lists with
grouping, sticky headers, and imperative scrolling.
[#​58724](https://redirect.github.com/ant-design/ant-design/pull/58724)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- ConfigProvider
- 🆕 Add ConfigProvider `focusOutline` theme token to control shared
focus outlines across Input, Select, Rate, Steps, Splitter, and other
components.
[#​58647](https://redirect.github.com/ant-design/ant-design/pull/58647)
[#​58708](https://redirect.github.com/ant-design/ant-design/pull/58708)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 Add ConfigProvider global `variant` configuration for Input.Search,
Input.Password, and Input.OTP.
[#​58784](https://redirect.github.com/ant-design/ant-design/pull/58784)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 Add ConfigProvider global `mouseEnterDelay` and `mouseLeaveDelay`
configuration for Tooltip, Popover, and Popconfirm.
[#​58892](https://redirect.github.com/ant-design/ant-design/pull/58892)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🌐 Localization
- 🇦🇱 Add Albanian `sq_AL` locale support.
[#​58618](https://redirect.github.com/ant-design/ant-design/pull/58618)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🆕 Add Tree `useTree` for retrieving node paths and support `scrollTo({
autoExpand: true })` to expand target nodes before scrolling.
[#​58841](https://redirect.github.com/ant-design/ant-design/pull/58841)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🆕 Add FloatButton.BackTop `showProgress` to display the current scroll
progress around the button.
[#​58894](https://redirect.github.com/ant-design/ant-design/pull/58894)
[@​ZQDesigned](https://redirect.github.com/ZQDesigned)
- 🆕 Add Table `expandable.forceRender` to render expanded row content
before its first expansion.
[#​58860](https://redirect.github.com/ant-design/ant-design/pull/58860)
[@​nikzanda](https://redirect.github.com/nikzanda)
- 🆕 Add Pagination `components.sizeChanger` to customize the page-size
changer, including in Table pagination.
[#​58831](https://redirect.github.com/ant-design/ant-design/pull/58831)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 Add Mentions `popupRender` to customize suggestion dropdown
rendering.
[#​58582](https://redirect.github.com/ant-design/ant-design/pull/58582)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 Add Tabs `more.popupRender` to customize the overflow dropdown
content.
[#​58651](https://redirect.github.com/ant-design/ant-design/pull/58651)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 Add BorderBeam `count` to display multiple evenly distributed beams
around the container border.
[#​58691](https://redirect.github.com/ant-design/ant-design/pull/58691)
[@​meet-student](https://redirect.github.com/meet-student)
- 🆕 Add Image `preview.wheel` to control mouse wheel zoom in preview.
[#​58728](https://redirect.github.com/ant-design/ant-design/pull/58728)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 Add Alert `borderRadius` component token to customize its corner
radius.
[#​57765](https://redirect.github.com/ant-design/ant-design/pull/57765)
[@​guoyunhe](https://redirect.github.com/guoyunhe)
- 🆕 Add `nativeElement` ref support to Avatar.Group, Badge.Ribbon,
Breadcrumb, Calendar, Card.Grid, Card.Meta, Carousel, Descriptions,
Divider, Empty, FloatButton.Group, List.Item.Meta, QRCode, Result,
Skeleton, Space.Compact, Spin, Splitter, Transfer, and Watermark.
[#​58627](https://redirect.github.com/ant-design/ant-design/pull/58627)
[#​58628](https://redirect.github.com/ant-design/ant-design/pull/58628)
[#​58629](https://redirect.github.com/ant-design/ant-design/pull/58629)
[#​58630](https://redirect.github.com/ant-design/ant-design/pull/58630)
[#​58631](https://redirect.github.com/ant-design/ant-design/pull/58631)
[#​58632](https://redirect.github.com/ant-design/ant-design/pull/58632)
[#​58633](https://redirect.github.com/ant-design/ant-design/pull/58633)
[#​58634](https://redirect.github.com/ant-design/ant-design/pull/58634)
[#​58635](https://redirect.github.com/ant-design/ant-design/pull/58635)
[#​58636](https://redirect.github.com/ant-design/ant-design/pull/58636)
[#​58637](https://redirect.github.com/ant-design/ant-design/pull/58637)
[#​58638](https://redirect.github.com/ant-design/ant-design/pull/58638)
[#​58639](https://redirect.github.com/ant-design/ant-design/pull/58639)
[#​58640](https://redirect.github.com/ant-design/ant-design/pull/58640)
[#​58641](https://redirect.github.com/ant-design/ant-design/pull/58641)
[#​58642](https://redirect.github.com/ant-design/ant-design/pull/58642)
[#​58643](https://redirect.github.com/ant-design/ant-design/pull/58643)
[#​58644](https://redirect.github.com/ant-design/ant-design/pull/58644)
[#​58645](https://redirect.github.com/ant-design/ant-design/pull/58645)
[#​58667](https://redirect.github.com/ant-design/ant-design/pull/58667)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🤖 Export missing public Props and Ref types for Alert, Carousel,
Cascader, Masonry, Mentions, Radio, Slider, Statistic, Table, Tabs,
Tooltip, and Upload.
[#​58700](https://redirect.github.com/ant-design/ant-design/pull/58700)
[#​58798](https://redirect.github.com/ant-design/ant-design/pull/58798)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 Fix semantic style precedence for Calendar, ColorPicker, DatePicker,
Divider, Dropdown, Input, Masonry, Popover, Popconfirm, QRCode, Space,
Spin, Tag, TimePicker, Tooltip, Typography, Badge, Drawer, FloatButton,
Image, Message, Modal, Notification, Steps, Timeline, Tour, and Upload
when combining ConfigProvider and component-level `style` and `styles`
settings.
[#​58550](https://redirect.github.com/ant-design/ant-design/pull/58550)
[#​58564](https://redirect.github.com/ant-design/ant-design/pull/58564)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Select
- 🐞 Fix Select placeholder remaining visible when an ancestor is hidden.
[#​58572](https://redirect.github.com/ant-design/ant-design/pull/58572)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Select clear icon showing a native button background in dark
mode.
[#​58928](https://redirect.github.com/ant-design/ant-design/pull/58928)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 Fix Drawer close button remaining interactive when
`closable.disabled` is enabled.
[#​58853](https://redirect.github.com/ant-design/ant-design/pull/58853)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Carousel jumping to the first slide when children are
dynamically added.
[#​58845](https://redirect.github.com/ant-design/ant-design/pull/58845)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🐞 Fix Button layout shift when the `loading` animation starts.
[#​58690](https://redirect.github.com/ant-design/ant-design/pull/58690)
[#​58712](https://redirect.github.com/ant-design/ant-design/pull/58712)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 Fix Typography ellipsis tooltip closing before users can interact
with its popup, and improve its hover behavior around action buttons.
[#​58661](https://redirect.github.com/ant-design/ant-design/pull/58661)
[#​58722](https://redirect.github.com/ant-design/ant-design/pull/58722)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 💄 Improve Select, Tree, and Table virtual scrollbar track feedback,
and support clicking the Table scrollbar track to jump.
[#​58625](https://redirect.github.com/ant-design/ant-design/pull/58625)
[#​58658](https://redirect.github.com/ant-design/ant-design/pull/58658)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
***
- 🔥 新增 Listy
高性能虚拟列表组件,支持分组、吸顶标题和命令式滚动。[#​58724](https://redirect.github.com/ant-design/ant-design/pull/58724)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- ConfigProvider
- 🆕 新增 ConfigProvider 主题 Token `focusOutline`,用于统一控制
Input、Select、Rate、Steps、Splitter
等组件的聚焦描边。[#​58647](https://redirect.github.com/ant-design/ant-design/pull/58647)
[#​58708](https://redirect.github.com/ant-design/ant-design/pull/58708)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 新增 ConfigProvider 全局配置 Input.Search、Input.Password 和 Input.OTP
`variant`
的能力。[#​58784](https://redirect.github.com/ant-design/ant-design/pull/58784)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 新增 ConfigProvider 对 Tooltip、Popover 和 Popconfirm `mouseEnterDelay` 与
`mouseLeaveDelay`
的全局配置支持。[#​58892](https://redirect.github.com/ant-design/ant-design/pull/58892)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🌐 国际化
- 🇦🇱 新增阿尔巴尼亚语 `sq_AL` locale
本地化支持。[#​58618](https://redirect.github.com/ant-design/ant-design/pull/58618)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🆕 新增 Tree `useTree` 以获取节点路径,并支持 `scrollTo({ autoExpand: true })`
在滚动前自动展开目标节点。[#​58841](https://redirect.github.com/ant-design/ant-design/pull/58841)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🆕 新增 FloatButton.BackTop
`showProgress`,用于在按钮边缘展示当前滚动进度。[#​58894](https://redirect.github.com/ant-design/ant-design/pull/58894)
[@​ZQDesigned](https://redirect.github.com/ZQDesigned)
- 🆕 新增 Table
`expandable.forceRender`,支持在首次展开前渲染展开行内容。[#​58860](https://redirect.github.com/ant-design/ant-design/pull/58860)
[@​nikzanda](https://redirect.github.com/nikzanda)
- 🆕 新增 Pagination `components.sizeChanger`,支持自定义每页条数切换器,并可用于 Table
分页。[#​58831](https://redirect.github.com/ant-design/ant-design/pull/58831)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🆕 新增 Mentions `popupRender`
属性,支持自定义建议下拉菜单的渲染。[#​58582](https://redirect.github.com/ant-design/ant-design/pull/58582)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 新增 Tabs
`more.popupRender`,支持自定义折叠下拉菜单内容。[#​58651](https://redirect.github.com/ant-design/ant-design/pull/58651)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 新增 BorderBeam `count`
属性,支持在容器边缘显示多条均匀分布的流光。[#​58691](https://redirect.github.com/ant-design/ant-design/pull/58691)
[@​meet-student](https://redirect.github.com/meet-student)
- 🆕 新增 Image `preview.wheel`
属性,用于控制预览时是否启用鼠标滚轮缩放。[#​58728](https://redirect.github.com/ant-design/ant-design/pull/58728)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🆕 新增 Alert `borderRadius` 组件
Token,用于自定义圆角。[#​57765](https://redirect.github.com/ant-design/ant-design/pull/57765)
[@​guoyunhe](https://redirect.github.com/guoyunhe)
- 🆕 新增
Avatar.Group、Badge.Ribbon、Breadcrumb、Calendar、Card.Grid、Card.Meta、Carousel、Descriptions、Divider、Empty、FloatButton.Group、List.Item.Meta、QRCode、Result、Skeleton、Space.Compact、Spin、Splitter、Transfer
和 Watermark 的 `nativeElement` ref,用于访问各自的根 DOM
元素。[#​58627](https://redirect.github.com/ant-design/ant-design/pull/58627)
[#​58628](https://redirect.github.com/ant-design/ant-design/pull/58628)
[#​58629](https://redirect.github.com/ant-design/ant-design/pull/58629)
[#​58630](https://redirect.github.com/ant-design/ant-design/pull/58630)
[#​58631](https://redirect.github.com/ant-design/ant-design/pull/58631)
[#​58632](https://redirect.github.com/ant-design/ant-design/pull/58632)
[#​58633](https://redirect.github.com/ant-design/ant-design/pull/58633)
[#​58634](https://redirect.github.com/ant-design/ant-design/pull/58634)
[#​58635](https://redirect.github.com/ant-design/ant-design/pull/58635)
[#​58636](https://redirect.github.com/ant-design/ant-design/pull/58636)
[#​58637](https://redirect.github.com/ant-design/ant-design/pull/58637)
[#​58638](https://redirect.github.com/ant-design/ant-design/pull/58638)
[#​58639](https://redirect.github.com/ant-design/ant-design/pull/58639)
[#​58640](https://redirect.github.com/ant-design/ant-design/pull/58640)
[#​58641](https://redirect.github.com/ant-design/ant-design/pull/58641)
[#​58642](https://redirect.github.com/ant-design/ant-design/pull/58642)
[#​58643](https://redirect.github.com/ant-design/ant-design/pull/58643)
[#​58644](https://redirect.github.com/ant-design/ant-design/pull/58644)
[#​58645](https://redirect.github.com/ant-design/ant-design/pull/58645)
[#​58667](https://redirect.github.com/ant-design/ant-design/pull/58667)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🤖 补充导出
Alert、Carousel、Cascader、Masonry、Mentions、Radio、Slider、Statistic、Table、Tabs、Tooltip
和 Upload 缺失的公开 Props 与 Ref
类型。[#​58700](https://redirect.github.com/ant-design/ant-design/pull/58700)
[#​58798](https://redirect.github.com/ant-design/ant-design/pull/58798)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 修复
Calendar、ColorPicker、DatePicker、Divider、Dropdown、Input、Masonry、Popover、Popconfirm、QRCode、Space、Spin、Tag、TimePicker、Tooltip、Typography、Badge、Drawer、FloatButton、Image、Message、Modal、Notification、Steps、Timeline、Tour
和 Upload 同时使用 ConfigProvider 与组件级 `style`、`styles`
时的语义样式优先级。[#​58550](https://redirect.github.com/ant-design/ant-design/pull/58550)
[#​58564](https://redirect.github.com/ant-design/ant-design/pull/58564)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Select
- 🐞 修复 Select
占位文本在祖先元素隐藏时仍然可见的问题。[#​58572](https://redirect.github.com/ant-design/ant-design/pull/58572)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Select
清除图标在暗色模式下显示原生按钮背景的问题。[#​58928](https://redirect.github.com/ant-design/ant-design/pull/58928)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 修复 Drawer 启用 `closable.disabled`
后关闭按钮仍可交互的问题。[#​58853](https://redirect.github.com/ant-design/ant-design/pull/58853)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Carousel
动态添加子项时自动跳回第一张的问题。[#​58845](https://redirect.github.com/ant-design/ant-design/pull/58845)
[@​EmilyyyLiu](https://redirect.github.com/EmilyyyLiu)
- 🐞 修复 Button 开始 `loading`
动画时的布局跳动问题。[#​58690](https://redirect.github.com/ant-design/ant-design/pull/58690)
[#​58712](https://redirect.github.com/ant-design/ant-design/pull/58712)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 修复 Typography
省略提示提前关闭导致无法与弹层交互的问题,并优化操作按钮附近的悬浮交互。[#​58661](https://redirect.github.com/ant-design/ant-design/pull/58661)
[#​58722](https://redirect.github.com/ant-design/ant-design/pull/58722)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 💄 优化 Select、Tree 和 Table 虚拟滚动条轨道的交互反馈,并支持点击 Table
滚动条轨道快速跳转。[#​58625](https://redirect.github.com/ant-design/ant-design/pull/58625)
[#​58658](https://redirect.github.com/ant-design/ant-design/pull/58658)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
###
[`v6.5.4`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.5.4)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.5.3...6.5.4)
- 🐞 Fix Alert not showing the close button when the `closable`
configuration object only contains `onClose`.
[#​58885](https://redirect.github.com/ant-design/ant-design/pull/58885)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Checkbox.Group crashing when `options` contains nullish entries
or values.
[#​58879](https://redirect.github.com/ant-design/ant-design/pull/58879)
[@​GuillaumeZ2SS](https://redirect.github.com/GuillaumeZ2SS)
- 🐞 Fix App emitting an unnecessary CSS variable warning with
`component={false}`, while warning when root props cannot be applied in
this mode.
[#​58877](https://redirect.github.com/ant-design/ant-design/pull/58877)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 Fix Table selecting disabled rows on other pages when selecting all
data.
[#​58843](https://redirect.github.com/ant-design/ant-design/pull/58843)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Transfer deselect-all behavior after filtering.
[#​58844](https://redirect.github.com/ant-design/ant-design/pull/58844)
[@​thlovey](https://redirect.github.com/thlovey)
- 🐞 Fix DatePicker `RangePicker` semantic callbacks not receiving
forwarded props.
[#​58905](https://redirect.github.com/ant-design/ant-design/pull/58905)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 Fix FloatButton.BackTop scroll animation not respecting
`prefers-reduced-motion`.
[#​58849](https://redirect.github.com/ant-design/ant-design/pull/58849)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 💄 Fix bare `<svg>` icons from third-party icon libraries being
misaligned, missing spacing, or breaking onto separate lines in
Breadcrumb, Collapse, Segmented, Tabs, and Tag.
[#​58862](https://redirect.github.com/ant-design/ant-design/pull/58862)
[#​58868](https://redirect.github.com/ant-design/ant-design/pull/58868)
[#​58869](https://redirect.github.com/ant-design/ant-design/pull/58869)
[#​58870](https://redirect.github.com/ant-design/ant-design/pull/58870)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- 💄 Fix AutoComplete disabled text not using the disabled text color.
[#​58838](https://redirect.github.com/ant-design/ant-design/pull/58838)
[@​lazerg](https://redirect.github.com/lazerg)
- 🤖 Fix Tour exposing unusable per-step `indicatorsRender` and
`actionsRender` TypeScript definitions.
[#​58859](https://redirect.github.com/ant-design/ant-design/pull/58859)
[@​lazerg](https://redirect.github.com/lazerg)
***
- 🐞 修复 Alert 的 `closable` 配置对象仅包含 `onClose`
时不显示关闭按钮的问题。[#​58885](https://redirect.github.com/ant-design/ant-design/pull/58885)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Checkbox.Group 的 `options` 包含空值选项或空值 `value`
时崩溃的问题。[#​58879](https://redirect.github.com/ant-design/ant-design/pull/58879)
[@​GuillaumeZ2SS](https://redirect.github.com/GuillaumeZ2SS)
- 🐞 修复 App 使用 `component={false}` 时产生不必要的 CSS
变量警告,并在此模式下无法应用根节点属性时给出提示。[#​58877](https://redirect.github.com/ant-design/ant-design/pull/58877)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 修复 Table
全选数据时仍会选中其他分页中禁用行的问题。[#​58843](https://redirect.github.com/ant-design/ant-design/pull/58843)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Transfer
筛选后取消全选行为异常的问题。[#​58844](https://redirect.github.com/ant-design/ant-design/pull/58844)
[@​thlovey](https://redirect.github.com/thlovey)
- 🐞 修复 DatePicker `RangePicker` 语义化回调未透传 props
的问题。[#​58905](https://redirect.github.com/ant-design/ant-design/pull/58905)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 修复 FloatButton.BackTop 滚动动画未遵循 `prefers-reduced-motion`
设置的问题。[#​58849](https://redirect.github.com/ant-design/ant-design/pull/58849)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 💄 修复 Breadcrumb、Collapse、Segmented、Tabs 和 Tag 使用第三方图标库的原生 `<svg>`
图标时可能出现对齐异常、间距缺失,或在 CSS reset
下换行的问题。[#​58862](https://redirect.github.com/ant-design/ant-design/pull/58862)
[#​58868](https://redirect.github.com/ant-design/ant-design/pull/58868)
[#​58869](https://redirect.github.com/ant-design/ant-design/pull/58869)
[#​58870](https://redirect.github.com/ant-design/ant-design/pull/58870)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- 💄 修复 AutoComplete
禁用状态下文本未使用禁用文字颜色的问题。[#​58838](https://redirect.github.com/ant-design/ant-design/pull/58838)
[@​lazerg](https://redirect.github.com/lazerg)
- 🤖 修复 Tour 暴露无法在单个步骤中使用的 `indicatorsRender` 和 `actionsRender`
TypeScript
类型定义的问题。[#​58859](https://redirect.github.com/ant-design/ant-design/pull/58859)
[@​lazerg](https://redirect.github.com/lazerg)
###
[`v6.5.3`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.5.3)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.5.2...6.5.3)
- Input
- 🐞 Fix Input.OTP using `type="text"` when `mask` is a string while
preserving explicit `type` values.
[#​58835](https://redirect.github.com/ant-design/ant-design/pull/58835)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Input.OTP displaying the original value when `mask` is `true`.
[#​58805](https://redirect.github.com/ant-design/ant-design/pull/58805)
[@​cyphercodes](https://redirect.github.com/cyphercodes)
- 💄 Fix Input.TextArea resize handle rendering as a dot on touch
devices.
[#​58812](https://redirect.github.com/ant-design/ant-design/pull/58812)
[@​pupuking723](https://redirect.github.com/pupuking723)
- Typography
- ⚡️ Improve Typography ellipsis tooltip performance in large lists.
[#​58806](https://redirect.github.com/ant-design/ant-design/pull/58806)
[@​lkxdsb](https://redirect.github.com/lkxdsb)
- 🐞 Fix Typography editable textarea font size not matching the edited
content.
[#​58551](https://redirect.github.com/ant-design/ant-design/pull/58551)
[@​gaurav0107](https://redirect.github.com/gaurav0107)
- 🐞 Fix DatePicker.RangePicker submitting unconfirmed partial values on
blur when using `showTime` and `allowEmpty`.
[#​58803](https://redirect.github.com/ant-design/ant-design/pull/58803)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 Fix Form.Item `useStatus` returning stale errors and warnings when
the validation status remains unchanged.
[#​58815](https://redirect.github.com/ant-design/ant-design/pull/58815)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 Fix Slider triggering `onFocus` and `onBlur` callbacks multiple
times.
[#​58711](https://redirect.github.com/ant-design/ant-design/pull/58711)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Spin standalone indicators being mispositioned when nested in
another Spin.
[#​58801](https://redirect.github.com/ant-design/ant-design/pull/58801)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Table controlled filter dropdown selections not updating while
open.
[#​58816](https://redirect.github.com/ant-design/ant-design/pull/58816)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 Fix Upload default download links allowing newly opened tabs to
access the opener page.
[#​58817](https://redirect.github.com/ant-design/ant-design/pull/58817)
[@​afc163](https://redirect.github.com/afc163)
- 💄 Fix incomplete Icon base styles when `theme.zeroRuntime` or CSS
layers are enabled.
[#​58763](https://redirect.github.com/ant-design/ant-design/pull/58763)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 Fix Select suffix icons and selected content overlapping the clear
icon with custom theme colors.
[#​58581](https://redirect.github.com/ant-design/ant-design/pull/58581)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 Fix Tabs third-party `<svg>` icons not vertically aligning with
labels.
[#​58847](https://redirect.github.com/ant-design/ant-design/pull/58847)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
***
- Input
- 🐞 修复 Input.OTP 使用字符串 `mask` 时仍采用 `type="text"` 的问题,并保留显式 `type`
配置。[#​58835](https://redirect.github.com/ant-design/ant-design/pull/58835)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Input.OTP 的 `mask` 为 `true`
时仍显示原始值的问题。[#​58805](https://redirect.github.com/ant-design/ant-design/pull/58805)
[@​cyphercodes](https://redirect.github.com/cyphercodes)
- 💄 修复 Input.TextArea
调整大小手柄在触摸设备上显示为小圆点的问题。[#​58812](https://redirect.github.com/ant-design/ant-design/pull/58812)
[@​pupuking723](https://redirect.github.com/pupuking723)
- Typography
- ⚡️ 优化 Typography
省略提示在大列表中的渲染性能。[#​58806](https://redirect.github.com/ant-design/ant-design/pull/58806)
[@​lkxdsb](https://redirect.github.com/lkxdsb)
- 🐞 修复 Typography
可编辑文本框字号与被编辑内容不一致的问题。[#​58551](https://redirect.github.com/ant-design/ant-design/pull/58551)
[@​gaurav0107](https://redirect.github.com/gaurav0107)
- 🐞 修复 DatePicker.RangePicker 使用 `showTime` 和 `allowEmpty`
时失焦会提交未确认部分值的问题。[#​58803](https://redirect.github.com/ant-design/ant-design/pull/58803)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 修复 Form.Item `useStatus`
在校验状态未变化时返回旧错误和警告内容的问题。[#​58815](https://redirect.github.com/ant-design/ant-design/pull/58815)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 修复 Slider 的 `onFocus` 和 `onBlur`
回调被重复触发的问题。[#​58711](https://redirect.github.com/ant-design/ant-design/pull/58711)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Spin
独立加载指示器嵌套使用时定位错乱的问题。[#​58801](https://redirect.github.com/ant-design/ant-design/pull/58801)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Table
受控筛选面板保持打开时选中项未同步更新的问题。[#​58816](https://redirect.github.com/ant-design/ant-design/pull/58816)
[@​afc163](https://redirect.github.com/afc163)
- 🐞 修复 Upload
默认下载打开的新页面可访问来源页面的问题。[#​58817](https://redirect.github.com/ant-design/ant-design/pull/58817)
[@​afc163](https://redirect.github.com/afc163)
- 💄 修复启用 `theme.zeroRuntime` 或 CSS layer 时 Icon
基础样式不完整的问题。[#​58763](https://redirect.github.com/ant-design/ant-design/pull/58763)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 修复 Select
自定义主题色下后缀图标或选中内容与清除图标重叠的问题。[#​58581](https://redirect.github.com/ant-design/ant-design/pull/58581)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 修复 Tabs 中第三方 `<svg>`
图标与标签文字垂直方向未对齐的问题。[#​58847](https://redirect.github.com/ant-design/ant-design/pull/58847)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
###
[`v6.5.2`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.5.2)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.5.1...6.5.2)
- 💄 Fix Button, Collapse, ColorPicker, Layout, Select, Space.Addon,
Tree, and Typography borders not respecting the global `lineWidth` and
`lineType` Design Tokens.
[#​58740](https://redirect.github.com/ant-design/ant-design/pull/58740)
[#​58741](https://redirect.github.com/ant-design/ant-design/pull/58741)
[#​58742](https://redirect.github.com/ant-design/ant-design/pull/58742)
[#​58743](https://redirect.github.com/ant-design/ant-design/pull/58743)
[#​58745](https://redirect.github.com/ant-design/ant-design/pull/58745)
[#​58755](https://redirect.github.com/ant-design/ant-design/pull/58755)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix BorderBeam, Checkbox, and Switch reduced-motion styles causing
Lightning CSS minification failures.
[#​58707](https://redirect.github.com/ant-design/ant-design/pull/58707)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Tag
- 💄 Fix Tag missing spacing and incorrect vertical alignment for bare
`<svg>` icons from third-party icon libraries.
[#​58723](https://redirect.github.com/ant-design/ant-design/pull/58723)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- 🐞 Fix Tag navigation being triggered when clicking the close icon with
both `href` and `closable` set.
[#​58720](https://redirect.github.com/ant-design/ant-design/pull/58720)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Input.OTP dropping root DOM event handlers including
`onPointerDown`, `onAnimationEnd`, `onTransitionEnd`, and `onScrollEnd`.
[#​58697](https://redirect.github.com/ant-design/ant-design/pull/58697)
[react-component/util#794](https://redirect.github.com/react-component/util/pull/794)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- 🐞 Fix Form triggering a hook-order warning in React 19 when using the
UMD development build.
[#​58417](https://redirect.github.com/ant-design/ant-design/pull/58417)
[@​biubiukam](https://redirect.github.com/biubiukam)
- 💄 Fix Table missing the top border when a bordered nested table is
wrapped by Tabs or custom content.
[#​58746](https://redirect.github.com/ant-design/ant-design/pull/58746)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Input.Search custom `enterButton` not respecting the component's
`disabled` and `loading` states.
[#​58726](https://redirect.github.com/ant-design/ant-design/pull/58726)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Transfer custom action buttons passed through `actions` not
preserving their own `disabled` state.
[#​58718](https://redirect.github.com/ant-design/ant-design/pull/58718)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Tree `rootStyle` being ignored, and deprecate it in favor of
`styles.root`.
[#​58709](https://redirect.github.com/ant-design/ant-design/pull/58709)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Grid Col ignoring numeric `0` for the `flex` prop in regular and
responsive configurations.
[#​58719](https://redirect.github.com/ant-design/ant-design/pull/58719)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix InputNumber not displaying `suffix` when Form feedback is
enabled.
[#​58703](https://redirect.github.com/ant-design/ant-design/pull/58703)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- ⌨️ Fix Splitter percentage-based `aria-valuemin` and `aria-valuemax`
values before container measurement, and prevent `lazy` drag previews
from exceeding bounds next to zero-sized panels.
[#​58702](https://redirect.github.com/ant-design/ant-design/pull/58702)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 📖 Fix the ant.design homepage theme preview resetting the selected
theme during rerenders.
[#​58687](https://redirect.github.com/ant-design/ant-design/pull/58687)
[@​meet-student](https://redirect.github.com/meet-student)
- 📝 Correct Anchor `offsetTop` default value to `0` in the Chinese
documentation.
[#​58710](https://redirect.github.com/ant-design/ant-design/pull/58710)
[@​dogledogle](https://redirect.github.com/dogledogle)
***
- 💄 修复 Button、Collapse、ColorPicker、Layout、Select、Space.Addon、Tree 和
Typography 边框未响应全局 `lineWidth` 与 `lineType` Design Token
的问题。[#​58740](https://redirect.github.com/ant-design/ant-design/pull/58740)
[#​58741](https://redirect.github.com/ant-design/ant-design/pull/58741)
[#​58742](https://redirect.github.com/ant-design/ant-design/pull/58742)
[#​58743](https://redirect.github.com/ant-design/ant-design/pull/58743)
[#​58745](https://redirect.github.com/ant-design/ant-design/pull/58745)
[#​58755](https://redirect.github.com/ant-design/ant-design/pull/58755)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 BorderBeam、Checkbox 和 Switch 的 reduced-motion 样式导致 Lightning CSS
压缩失败的问题。[#​58707](https://redirect.github.com/ant-design/ant-design/pull/58707)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- Tag
- 💄 修复 Tag 中第三方图标库的原生 `<svg>`
图标缺少间距且垂直对齐异常的问题。[#​58723](https://redirect.github.com/ant-design/ant-design/pull/58723)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- 🐞 修复 Tag 同时配置 `href` 和 `closable`
时,点击关闭图标仍会触发链接跳转的问题。[#​58720](https://redirect.github.com/ant-design/ant-design/pull/58720)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Input.OTP 根节点丢失
`onPointerDown`、`onAnimationEnd`、`onTransitionEnd` 和 `onScrollEnd` 等 DOM
事件回调的问题。[#​58697](https://redirect.github.com/ant-design/ant-design/pull/58697)
[react-component/util#794](https://redirect.github.com/react-component/util/pull/794)
[@​aojunhao123](https://redirect.github.com/aojunhao123)
- 🐞 修复 Form 在 React 19 中使用 UMD 开发构建时触发 Hook
调用顺序警告的问题。[#​58417](https://redirect.github.com/ant-design/ant-design/pull/58417)
[@​biubiukam](https://redirect.github.com/biubiukam)
- 💄 修复 Table 带边框的嵌套表格被 Tabs
或自定义内容包裹时缺少上边框的问题。[#​58746](https://redirect.github.com/ant-design/ant-design/pull/58746)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Input.Search 自定义 `enterButton` 未响应组件 `disabled` 和 `loading`
状态的问题。[#​58726](https://redirect.github.com/ant-design/ant-design/pull/58726)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Transfer 通过 `actions` 传入的自定义操作按钮未保留自身 `disabled`
状态的问题。[#​58718](https://redirect.github.com/ant-design/ant-design/pull/58718)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Tree `rootStyle` 不生效的问题,并废弃该属性,推荐使用
`styles.root`。[#​58709](https://redirect.github.com/ant-design/ant-design/pull/58709)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Grid Col 在普通和响应式配置中忽略 `flex` 属性数值 `0`
的问题。[#​58719](https://redirect.github.com/ant-design/ant-design/pull/58719)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 InputNumber 在 Form 开启反馈状态时不显示 `suffix`
的问题。[#​58703](https://redirect.github.com/ant-design/ant-design/pull/58703)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- ⌨️ 修复 Splitter 在容器尺寸测量前百分比 `aria-valuemin` 和 `aria-valuemax`
取值异常,以及相邻面板尺寸为 0 时 `lazy`
拖拽预览越界的问题。[#​58702](https://redirect.github.com/ant-design/ant-design/pull/58702)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 📖 修复 ant.design
首页主题预览在重新渲染时重置已选主题的问题。[#​58687](https://redirect.github.com/ant-design/ant-design/pull/58687)
[@​meet-student](https://redirect.github.com/meet-student)
- 📝 修正 Anchor 中文文档中 `offsetTop` 的默认值为
`0`。[#​58710](https://redirect.github.com/ant-design/ant-design/pull/58710)
[@​dogledogle](https://redirect.github.com/dogledogle)
###
[`v6.5.1`](https://redirect.github.com/ant-design/ant-design/releases/tag/6.5.1)
[Compare
Source](https://redirect.github.com/ant-design/ant-design/compare/6.5.0...6.5.1)
- 💄 Fix AutoComplete custom input background color being applied twice
in the `filled` variant.
[#​58669](https://redirect.github.com/ant-design/ant-design/pull/58669)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Avatar, List, Pagination, Steps, and Table not responding to
breakpoint changes after responsive configuration is enabled
dynamically.
[#​58654](https://redirect.github.com/ant-design/ant-design/pull/58654)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- ⌨️ Fix Button, Checkbox, Switch, Splitter, and BorderBeam
pseudo-element transitions and animations so they respect
`prefers-reduced-motion`.
[#​58685](https://redirect.github.com/ant-design/ant-design/pull/58685)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 Fix Button icon vertical alignment when used in Card `extra`.
[#​58584](https://redirect.github.com/ant-design/ant-design/pull/58584)
[@​zombieJ](https://redirect.github.com/zombieJ)
- ConfigProvider
- 🐞 Fix ConfigProvider with StyleProvider `layer` causing missing styles
in some components.
[#​58559](https://redirect.github.com/ant-design/ant-design/pull/58559)
[@​fireairforce](https://redirect.github.com/fireairforce)
- 🐞 Fix ConfigProvider CSS variable prefix not updating when `prefixCls`
changes dynamically.
[#​58652](https://redirect.github.com/ant-design/ant-design/pull/58652)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 Fix Descriptions content columns collapsing to near-zero width when
nested in Popover.
[#​58583](https://redirect.github.com/ant-design/ant-design/pull/58583)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 Fix Dropdown positioning and interaction when its child component
does not support `ref`.
[#​58662](https://redirect.github.com/ant-design/ant-design/pull/58662)
[@​afc163](https://redirect.github.com/afc163)
- Form
- 🐞 Fix Form.Item validation messages still appearing when
`help={false}` is set.
[#​58558](https://redirect.github.com/ant-design/ant-design/pull/58558)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Form.Item feedback icon classes and nested `noStyle` feedback
state not updating after dynamic configuration changes.
[#​58653](https://redirect.github.com/ant-design/ant-design/pull/58653)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 💄 Fix Icon `TwitchFilled` rendering smaller than other icons and
remove its unintended drop shadow.
[#​58542](https://redirect.github.com/ant-design/ant-design/pull/58542)
[ant-design-icons#747](https://redirect.github.com/ant-design/ant-design-icons/pull/747)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- ⌨️ Fix Input.Search focus outline being covered when hovering the
adjacent Input.
[#​58615](https://redirect.github.com/ant-design/ant-design/pull/58615)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 Fix Modal methods incorrectly applying `classNames.body`,
`styles.body`, and `bodyStyle` to confirmation dialog titles.
[#​58412](https://redirect.github.com/ant-design/ant-design/pull/58412)
[@​biubiukam](https://redirect.github.com/biubiukam)
- 🐞 Fix Pagination page-size selector expanding to full width inside
Form.Item.
[#​58579](https://redirect.github.com/ant-design/ant-design/pull/58579)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 Fix Switch icons in `checkedChildren` and `unCheckedChildren` not
being vertically centered.
[#​58672](https://redirect.github.com/ant-design/ant-design/pull/58672)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- Table
- 🐞 Fix Table horizontal scrolling occasionally jumping back because of
stale deferred scroll synchronization.
[#​58613](https://redirect.github.com/ant-design/ant-design/pull/58613)
[#​58622](https://redirect.github.com/ant-design/ant-design/pull/58622)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 Fix Table filter selections not resetting to the current filtered
values when reopening the filter dropdown.
[#​58657](https://redirect.github.com/ant-design/ant-design/pull/58657)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- Typography
- ⌨️ Fix Typography ellipsis mode and `aria-label` not updating when
`ellipsis.rows` or editable text changes.
[#​58650](https://redirect.github.com/ant-design/ant-design/pull/58650)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🇯🇵 Fix Typography incorrect Japanese `expand` and `collapse` labels.
[#​58563](https://redirect.github.com/ant-design/ant-design/pull/58563)
[@​greymoth-jp](https://redirect.github.com/greymoth-jp)
- 🌐 Complete missing localized messages for ConfigProvider, Table,
Transfer, Typography, Form, QRCode, ColorPicker, and Icon across 68
locales.
[#​58575](https://redirect.github.com/ant-design/ant-design/pull/58575)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
***
- 💄 修复 AutoComplete 自定义输入组件在 `filled`
形态下背景色重复叠加的问题。[#​58669](https://redirect.github.com/ant-design/ant-design/pull/58669)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Avatar、List、Pagination、Steps 和 Table
动态启用响应式配置后无法响应断点变化的问题。[#​58654](https://redirect.github.com/ant-design/ant-design/pull/58654)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- ⌨️ 修复 Button、Checkbox、Switch、Splitter 和 BorderBeam 的伪元素过渡与动画,使其遵循
`prefers-reduced-motion`
设置。[#​58685](https://redirect.github.com/ant-design/ant-design/pull/58685)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 修复 Button 图标在 Card `extra`
中垂直对齐的问题。[#​58584](https://redirect.github.com/ant-design/ant-design/pull/58584)
[@​zombieJ](https://redirect.github.com/zombieJ)
- ConfigProvider
- 🐞 修复 ConfigProvider 配合 StyleProvider `layer`
使用时部分组件样式可能丢失的问题。[#​58559](https://redirect.github.com/ant-design/ant-design/pull/58559)
[@​fireairforce](https://redirect.github.com/fireairforce)
- 🐞 修复 ConfigProvider 动态修改 `prefixCls` 后 CSS
变量前缀未更新的问题。[#​58652](https://redirect.github.com/ant-design/ant-design/pull/58652)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 🐞 修复 Descriptions 嵌套在 Popover
中时内容列宽度塌缩的问题。[#​58583](https://redirect.github.com/ant-design/ant-design/pull/58583)
[@​zombieJ](https://redirect.github.com/zombieJ)
- 🐞 修复 Dropdown 子组件不支持 `ref`
时弹层定位与交互异常的问题。[#​58662](https://redirect.github.com/ant-design/ant-design/pull/58662)
[@​afc163](https://redirect.github.com/afc163)
- Form
- 🐞 修复 Form.Item 设置 `help={false}`
时仍展示校验提示的问题。[#​58558](https://redirect.github.com/ant-design/ant-design/pull/58558)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Form.Item 动态配置变化后反馈图标类名与嵌套 `noStyle`
反馈状态未更新的问题。[#​58653](https://redirect.github.com/ant-design/ant-design/pull/58653)
[@​li-jia-nan](https://redirect.github.com/li-jia-nan)
- 💄 修复 Icon `TwitchFilled`
相比其他图标偏小且带有意外投影的问题。[#​58542](https://redirect.github.com/ant-design/ant-design/pull/58542)
[ant-design-icons#747](https://redirect.github.com/ant-design/ant-design-icons/pull/747)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- ⌨️ 修复 Input.Search 搜索按钮的聚焦轮廓在相邻 Input 进入 hover
态时被覆盖的问题。[#​58615](https://redirect.github.com/ant-design/ant-design/pull/58615)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 🐞 修复 Modal 方法将 `classNames.body`、`styles.body` 和 `bodyStyle`
错误应用到确认弹窗标题的问题。[#​58412](https://redirect.github.com/ant-design/ant-design/pull/58412)
[@​biubiukam](https://redirect.github.com/biubiukam)
- 🐞 修复 Pagination 每页条数选择器在 Form.Item
中被撑满宽度的问题。[#​58579](https://redirect.github.com/ant-design/ant-design/pull/58579)
[@​QDyanbing](https://redirect.github.com/QDyanbing)
- 💄 修复 Switch 的 `checkedChildren` 和 `unCheckedChildren`
中图标未垂直居中的问题。[#​58672](https://redirect.github.com/ant-design/ant-design/pull/58672)
[@​mohamedkhaled4053](https://redirect.github.com/mohamedkhaled4053)
- Table
- 🐞 修复 Table
横向滚动时旧的延迟同步任务可能导致滚动位置回跳的问题。[#​58613](https://redirect.github.com/ant-design/ant-design/pull/58613)
[#
> ✂ **Note**
>
> PR body was truncated to here.
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- "on sunday"
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jaegertracing/jaeger-ui).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC40OS4wIiwidXBkYXRlZEluVmVyIjoiNDQuNDkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOmRlcGVuZGVuY2llcyJdfQ==-->
Signed-off-by: Mend Renovate <bot@renovateapp.com>
🤔 This is a ...
🔗 Related Issues
💡 Background and Solution
📝 Change Log
Summary by CodeRabbit
Bug 修复
测试