From dbf71b5059a46fec1c957a6e3f85f2f281480077 Mon Sep 17 00:00:00 2001 From: lijianan <574980606@qq.com> Date: Sat, 27 Dec 2025 17:57:06 +0800 Subject: [PATCH 01/14] site: use cssVar (#56381) * test: fix master CI fail * fix: update --------- Co-authored-by: thinkasany <480968828@qq.com> --- .dumi/theme/common/BehaviorMap/BehaviorMap.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.dumi/theme/common/BehaviorMap/BehaviorMap.tsx b/.dumi/theme/common/BehaviorMap/BehaviorMap.tsx index ebd4c99013..44bcfcf01d 100644 --- a/.dumi/theme/common/BehaviorMap/BehaviorMap.tsx +++ b/.dumi/theme/common/BehaviorMap/BehaviorMap.tsx @@ -22,7 +22,7 @@ const useStyle = createStyles(({ cssVar }) => ({ width: 100%; min-height: 600px; height: fit-content; - background-color: #f5f5f5; + background-color: ${cssVar.colorBgLayout}; border: 1px solid #e8e8e8; border-radius: ${cssVar.borderRadiusLG}; overflow: hidden; @@ -54,7 +54,7 @@ const useStyle = createStyles(({ cssVar }) => ({ inset-inline-end: 20px; z-index: 10; border-radius: 4px; - font-size: 14px; + font-size: ${cssVar.fontSize}; `, mvp: css` margin-inline-end: ${cssVar.marginMD}; From 39b7edd3376847a2d77a649cf13440b5f73bae45 Mon Sep 17 00:00:00 2001 From: lijianan <574980606@qq.com> Date: Sat, 27 Dec 2025 18:12:05 +0800 Subject: [PATCH 02/14] site: use css logical attributes (#56388) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 遇见同学 <1875694521@qq.com> --- .dumi/hooks/useMenu.tsx | 5 +- .../common/BehaviorMap/useMermaidCode.ts | 71 +++++++++---------- 2 files changed, 36 insertions(+), 40 deletions(-) diff --git a/.dumi/hooks/useMenu.tsx b/.dumi/hooks/useMenu.tsx index d464195654..d8daa644a8 100644 --- a/.dumi/hooks/useMenu.tsx +++ b/.dumi/hooks/useMenu.tsx @@ -46,7 +46,7 @@ const useStyle = createStyles(({ css, cssVar }) => ({ font-weight: normal; font-size: ${cssVar.fontSizeSM}; opacity: 0.8; - margin-left: 4px; + margin-inline-start: ${cssVar.marginSM}; `, })); @@ -66,6 +66,7 @@ const MenuItemLabelWithTag: React.FC = (props) => { const { before, after, link, title, subtitle, search, tag, className } = props; const [locale] = useLocale(locales); + const getLocale = (name: string) => { return (locale as any)[name.toLowerCase()] ?? name; }; @@ -73,7 +74,7 @@ const MenuItemLabelWithTag: React.FC = (props) => { if (!before && !after) { return ( - + {title} {subtitle && {subtitle}} diff --git a/.dumi/theme/common/BehaviorMap/useMermaidCode.ts b/.dumi/theme/common/BehaviorMap/useMermaidCode.ts index 7d16412977..18bcf40fae 100644 --- a/.dumi/theme/common/BehaviorMap/useMermaidCode.ts +++ b/.dumi/theme/common/BehaviorMap/useMermaidCode.ts @@ -2,50 +2,45 @@ import { useMemo } from 'react'; import type { BehaviorMapItem } from './BehaviorMap'; -export const useMermaidCode = (data: BehaviorMapItem): string => { - const generateMermaidCode = (root: BehaviorMapItem): string => { - const lines: string[] = []; +const generateMermaidCode = (root: BehaviorMapItem) => { + const lines: string[] = []; - lines.push('graph LR'); + lines.push('graph LR'); - lines.push(`classDef baseNode fill:#fff,stroke:none,stroke-width:0px,rx:5,ry:5,font-size:14px`); + lines.push(`classDef baseNode fill:#fff,stroke:none,stroke-width:0px,rx:5,ry:5,font-size:14px`); - const traverse = (node: BehaviorMapItem, parentId?: string) => { - const safeId = `node_${node.id.replace(/[^a-z0-9]/gi, '_')}`; - let labelText = node.label.replace(/"/g, "'"); + const traverse = (node: BehaviorMapItem, parentId?: string) => { + const safeId = `node_${node.id.replace(/[^a-z0-9]/gi, '_')}`; + let labelText = node.label.replace(/"/g, "'"); - if (!parentId) { - lines.push(`style ${safeId} font-size:16px`); - labelText = `**${labelText}**`; - } else if (node.targetType === 'mvp') { - const blueDot = ``; - labelText = `${blueDot}${labelText}`; - } else if (node.targetType === 'extension') { - const grayDot = ``; - labelText = `${grayDot}${labelText}`; - } - lines.push(`${safeId}["${labelText}"]:::baseNode`); + if (!parentId) { + lines.push(`style ${safeId} font-size:16px`); + labelText = `**${labelText}**`; + } else if (node.targetType === 'mvp') { + const blueDot = ``; + labelText = `${blueDot}${labelText}`; + } else if (node.targetType === 'extension') { + const grayDot = ``; + labelText = `${grayDot}${labelText}`; + } + lines.push(`${safeId}["${labelText}"]:::baseNode`); - if (node.link) { - lines.push(`click ${safeId} "#${node.link}"`); - } + if (node.link) { + lines.push(`click ${safeId} "#${node.link}"`); + } - if (parentId) { - lines.push(`${parentId} --> ${safeId}`); - } + if (parentId) { + lines.push(`${parentId} --> ${safeId}`); + } - if (node.children && node.children.length > 0) { - node.children.forEach((child) => traverse(child, safeId)); - } - }; - - traverse(root); - return lines.join('\n'); + if (node.children && node.children.length > 0) { + node.children.forEach((child) => traverse(child, safeId)); + } }; - - const mermaidCode = useMemo(() => { - return generateMermaidCode(data); - }, [data]); - - return mermaidCode; + traverse(root); + return lines.join('\n'); +}; + +export const useMermaidCode = (data: BehaviorMapItem) => { + return useMemo(() => generateMermaidCode(data), [data]); }; From 5235b4fe32e7ba80cb74e417fd2712df1533e060 Mon Sep 17 00:00:00 2001 From: Wanpan Date: Sat, 27 Dec 2025 19:41:55 +0800 Subject: [PATCH 03/14] fix: Drawer.PurePanel does not respond to mouse events (#56387) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 遇见同学 <1875694521@qq.com> --- components/drawer/style/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/components/drawer/style/index.ts b/components/drawer/style/index.ts index ca775ca1a0..3bfc154dc2 100644 --- a/components/drawer/style/index.ts +++ b/components/drawer/style/index.ts @@ -77,6 +77,7 @@ const genDrawerStyle: GenerateStyle = (token) => { background: colorBgElevated, display: 'flex', flexDirection: 'column', + pointerEvents: 'auto', [`&${componentCls}-left`]: { boxShadow: token.boxShadowDrawerLeft, From 7326f7b119f1ae754938ab1856ec528ab141d69b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 10:21:48 +0800 Subject: [PATCH 04/14] chore(deps): update dependency parse5 to v8 (#56396) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d83afb691..b7d93ab49e 100644 --- a/package.json +++ b/package.json @@ -284,7 +284,7 @@ "ora": "^9.0.0", "p-all": "^5.0.1", "package-manager-detector": "^1.6.0", - "parse5": "6.0.1", + "parse5": "8.0.0", "parse5-htmlparser2-tree-adapter": "6.0.1", "parse5-parser-stream": "6.0.1", "pngjs": "^7.0.0", From a3d31746e3ed6843c2d03b15dfb694080112309a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 10:22:53 +0800 Subject: [PATCH 05/14] chore(deps): update dependency parse5-parser-stream to v8 (#56398) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b7d93ab49e..441c2fd150 100644 --- a/package.json +++ b/package.json @@ -286,7 +286,7 @@ "package-manager-detector": "^1.6.0", "parse5": "8.0.0", "parse5-htmlparser2-tree-adapter": "6.0.1", - "parse5-parser-stream": "6.0.1", + "parse5-parser-stream": "8.0.0", "pngjs": "^7.0.0", "portfinder": "^1.0.38", "prettier": "^3.7.4", From 0774e5a40afa81b6f998a9b66d2beaee7369e852 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 10:23:51 +0800 Subject: [PATCH 06/14] chore(deps): update actions-cool/issues-helper digest to e2ff998 (#56393) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --- .github/workflows/pr-check-merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check-merge.yml b/.github/workflows/pr-check-merge.yml index e62f52fcec..e49ae95b47 100644 --- a/.github/workflows/pr-check-merge.yml +++ b/.github/workflows/pr-check-merge.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest if: (github.event.pull_request.head.ref == 'next' || github.event.pull_request.head.ref == 'feature' || github.event.pull_request.head.ref == 'master') && github.event.pull_request.head.user.login == 'ant-design' steps: - - uses: actions-cool/issues-helper@d1d51fccf39469b5458203b1369060db0ff0c0db + - uses: actions-cool/issues-helper@e2ff99831a4f13625d35064e2b3dfe65c07a0396 with: actions: create-comment issue-number: ${{ github.event.number }} From b8b365c2d1d5afe6d090a4a0d8a500e0526fd0e8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 10:25:31 +0800 Subject: [PATCH 07/14] chore(deps): update dependency father to v4.6.12 (#56394) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 441c2fd150..2f59e500f0 100644 --- a/package.json +++ b/package.json @@ -247,7 +247,7 @@ "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.4.24", "fast-glob": "^3.3.3", - "father": "4.6.11", + "father": "4.6.12", "fs-extra": "^11.3.2", "gh-pages": "^6.3.0", "github-slugger": "^2.0.0", From 44abdc4cda534e17718facd989b5b3701d1b1d6f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 18:33:48 +0800 Subject: [PATCH 08/14] chore(deps): update dependency parse5-htmlparser2-tree-adapter to v8 (#56397) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2f59e500f0..905ae15cf3 100644 --- a/package.json +++ b/package.json @@ -285,7 +285,7 @@ "p-all": "^5.0.1", "package-manager-detector": "^1.6.0", "parse5": "8.0.0", - "parse5-htmlparser2-tree-adapter": "6.0.1", + "parse5-htmlparser2-tree-adapter": "8.0.0", "parse5-parser-stream": "8.0.0", "pngjs": "^7.0.0", "portfinder": "^1.0.38", From 6ed7b0f0455c18a1d0ce4039fa51209549f23e12 Mon Sep 17 00:00:00 2001 From: Wanpan Date: Sun, 28 Dec 2025 19:44:21 +0800 Subject: [PATCH 09/14] docs: update the components displayed on homepage (#56392) --- .../pages/index/components/ComponentsList.tsx | 124 +++++++++++++----- 1 file changed, 93 insertions(+), 31 deletions(-) diff --git a/.dumi/pages/index/components/ComponentsList.tsx b/.dumi/pages/index/components/ComponentsList.tsx index 4884ea0a1b..727ef0459c 100644 --- a/.dumi/pages/index/components/ComponentsList.tsx +++ b/.dumi/pages/index/components/ComponentsList.tsx @@ -1,13 +1,14 @@ import React from 'react'; import { CustomerServiceOutlined, QuestionCircleOutlined, SyncOutlined } from '@ant-design/icons'; import { - Alert, + Card, Carousel, DatePicker, Flex, FloatButton, + Masonry, Modal, - Progress, + Splitter, Tag, Tour, Typography, @@ -181,29 +182,30 @@ const ComponentsList: React.FC = () => { ), }, - { - title: 'Progress', - type: 'update', - node: ( - - - - {locale.inProgress} - - - - {locale.success} - - - - {locale.taskFailed} - - - ), - }, + // { + // title: 'Progress', + // type: 'update', + // node: ( + // + // + // + // {locale.inProgress} + // + // + // + // {locale.success} + // + // + // + // {locale.taskFailed} + // + // + // ), + // }, + { title: 'Tour', - type: 'new', + type: 'update', node: ( { /> ), }, + { title: 'FloatButton', - type: 'new', + type: 'update', node: ( { // }, { - title: 'Alert', - type: 'update', + title: 'Splitter', + type: 'new', node: ( - + + + + First + + + + + + + + Second + + + + + ), + }, + + { + title: 'Masonry', + type: 'new', + node: ( + ( + + {index + 1} + + )} /> ), }, + + // { + // title: 'Alert', + // type: 'update', + // node: ( + // + // ), + // }, ], [ isMobile, From ec0bdd2984def7f6de2a3ac1d89eec610d794d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=81=87=E8=A7=81=E5=90=8C=E5=AD=A6?= <1875694521@qq.com> Date: Sun, 28 Dec 2025 20:14:57 +0800 Subject: [PATCH 10/14] type: improve type (#56401) --- components/badge/ScrollNumber.tsx | 2 +- components/button/Button.tsx | 2 +- components/input/Search.tsx | 2 +- components/message/PurePanel.tsx | 2 +- components/message/index.tsx | 2 +- components/notification/index.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/badge/ScrollNumber.tsx b/components/badge/ScrollNumber.tsx index b45c7cb13b..140146905e 100644 --- a/components/badge/ScrollNumber.tsx +++ b/components/badge/ScrollNumber.tsx @@ -11,7 +11,7 @@ export interface ScrollNumberProps { motionClassName?: string; count?: string | number | null; children?: React.ReactElement; - component?: React.ComponentType; + component?: React.ComponentType>; style?: React.CSSProperties; title?: string | number | null; show: boolean; diff --git a/components/button/Button.tsx b/components/button/Button.tsx index ce1b3fa31d..c0e620401f 100644 --- a/components/button/Button.tsx +++ b/components/button/Button.tsx @@ -105,7 +105,7 @@ const ButtonTypeMap: Partial> = { primary: ['primary', 'solid'], dashed: ['default', 'dashed'], // `link` is not a real color but we should compatible with it - link: ['link' as any, 'link'], + link: ['link' as ButtonColorType, 'link'], text: ['default', 'text'], }; diff --git a/components/input/Search.tsx b/components/input/Search.tsx index 3f6514374e..40840fca80 100644 --- a/components/input/Search.tsx +++ b/components/input/Search.tsx @@ -242,7 +242,7 @@ const Search = React.forwardRef((props, ref) => { onChange, disabled, }, - Object.keys(rootProps) as any[], + Object.keys(rootProps) as Array, ); return ( diff --git a/components/message/PurePanel.tsx b/components/message/PurePanel.tsx index 41929ca2b6..bfa4a10c7f 100644 --- a/components/message/PurePanel.tsx +++ b/components/message/PurePanel.tsx @@ -35,7 +35,7 @@ export interface PureContentProps { export const PureContent: React.FC> = (props) => { const { prefixCls, type, icon, children, classNames: pureContentClassNames, styles } = props; const iconElement = icon || (type && TypeIcon[type]); - const iconNode = cloneElement(iconElement, (currentProps) => { + const iconNode = cloneElement>(iconElement, (currentProps) => { const mergedStyle: React.CSSProperties = { ...currentProps?.style, ...styles?.icon }; return { className: clsx(currentProps.className, pureContentClassNames?.icon), diff --git a/components/message/index.tsx b/components/message/index.tsx index b24b3b1124..5990afa712 100755 --- a/components/message/index.tsx +++ b/components/message/index.tsx @@ -328,7 +328,7 @@ methods.forEach((type: keyof MessageMethods) => { // ============================================================================== const noop = () => {}; -let _actWrapper: (wrapper: any) => void = noop; +let _actWrapper: (wrapper: (fn: () => void) => void) => void = noop; if (process.env.NODE_ENV === 'test') { _actWrapper = (wrapper) => { act = wrapper; diff --git a/components/notification/index.tsx b/components/notification/index.tsx index 93c5252cb2..7b027d2f63 100755 --- a/components/notification/index.tsx +++ b/components/notification/index.tsx @@ -247,7 +247,7 @@ methods.forEach((type: keyof NoticeMethods) => { // ============================================================================== const noop = () => {}; -let _actWrapper: (wrapper: any) => void = noop; +let _actWrapper: (wrapper: (fn: () => void) => void) => void = noop; if (process.env.NODE_ENV === 'test') { _actWrapper = (wrapper) => { act = wrapper; From d08de4e1de78b20c070ec6558769a53e7a068ff4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 21:17:10 +0800 Subject: [PATCH 11/14] chore(deps): update dependency jsdom to v27.4.0 (#56395) * chore(deps): update dependency jsdom to v27.4.0 * need transform @exodus --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --- .jest.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.jest.js b/.jest.js index e3df529c74..52638779f9 100644 --- a/.jest.js +++ b/.jest.js @@ -9,6 +9,7 @@ const compileModules = [ '@rc-component', // jsdom 27+ depends on ESM parse5, need transform 'parse5', + '@exodus', 'jsdom', ]; diff --git a/package.json b/package.json index 905ae15cf3..3b79c6233a 100644 --- a/package.json +++ b/package.json @@ -268,7 +268,7 @@ "jest-image-snapshot": "^6.5.1", "jest-puppeteer": "^11.0.0", "jquery": "^3.7.1", - "jsdom": "27.3.0", + "jsdom": "27.4.0", "jsonml-to-react-element": "^1.1.11", "jsonml.js": "^0.1.0", "lint-staged": "^16.2.7", From 3686df953a6fc4463f48962593da76abfd3351e5 Mon Sep 17 00:00:00 2001 From: MadCcc Date: Mon, 29 Dec 2025 11:33:01 +0800 Subject: [PATCH 12/14] docs: changelog 6.1.3 (#56402) * docs: changelog 6.1.3 * chore: update * chore: update --- CHANGELOG.en-US.md | 8 ++++++++ CHANGELOG.zh-CN.md | 8 ++++++++ package.json | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index b53392ad6a..cb868bee09 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -15,6 +15,14 @@ tag: vVERSION --- +## 6.1.3 + +`2025-12-29` + +- 🐞 Fix Drawer.PurePanel failing to respond to mouse interactions. [#56387](https://github.com/ant-design/ant-design/pull/56387) [@wanpan11](https://github.com/wanpan11) +- 🐞 Fix Select `options` props leaking to DOM elements and causing React unknown-prop warnings. [#56341](https://github.com/ant-design/ant-design/pull/56341) [@afc163](https://github.com/afc163) +- 🤖 MISC: Improve TypeScript type definitions. [#56401](https://github.com/ant-design/ant-design/pull/56401) [@meet-student](https://github.com/meet-student) + ## 6.1.2 `2025-12-24` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index a631d7c500..a7afbe49e3 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -15,6 +15,14 @@ tag: vVERSION --- +## 6.1.3 + +`2025-12-29` + +- 🐞 修复 Drawer.PurePanel 无法响应鼠标交互的问题。[#56387](https://github.com/ant-design/ant-design/pull/56387) [@wanpan11](https://github.com/wanpan11) +- 🐞 修复 Select options 属性透传至原生 DOM 导致 React 未知属性警告的问题。[#56341](https://github.com/ant-design/ant-design/pull/56341) [@afc163](https://github.com/afc163) +- 🤖 杂项:优化 TypeScript 类型定义。[#56401](https://github.com/ant-design/ant-design/pull/56401) [@meet-student](https://github.com/meet-student) + ## 6.1.2 `2025-12-24` diff --git a/package.json b/package.json index 3b79c6233a..5be71f3e82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antd", - "version": "6.1.2", + "version": "6.1.3", "description": "An enterprise-class UI design language and React components implementation", "license": "MIT", "funding": { From 9af831fd92040fccb396c04d8db7ae50f4e03b33 Mon Sep 17 00:00:00 2001 From: MadCcc Date: Mon, 29 Dec 2025 13:58:54 +0800 Subject: [PATCH 13/14] docs: update changelog 6.1.3 (#56403) --- CHANGELOG.en-US.md | 1 - CHANGELOG.zh-CN.md | 1 - 2 files changed, 2 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index cb868bee09..c8931e62a1 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -21,7 +21,6 @@ tag: vVERSION - 🐞 Fix Drawer.PurePanel failing to respond to mouse interactions. [#56387](https://github.com/ant-design/ant-design/pull/56387) [@wanpan11](https://github.com/wanpan11) - 🐞 Fix Select `options` props leaking to DOM elements and causing React unknown-prop warnings. [#56341](https://github.com/ant-design/ant-design/pull/56341) [@afc163](https://github.com/afc163) -- 🤖 MISC: Improve TypeScript type definitions. [#56401](https://github.com/ant-design/ant-design/pull/56401) [@meet-student](https://github.com/meet-student) ## 6.1.2 diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index a7afbe49e3..cee7c6d83c 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -21,7 +21,6 @@ tag: vVERSION - 🐞 修复 Drawer.PurePanel 无法响应鼠标交互的问题。[#56387](https://github.com/ant-design/ant-design/pull/56387) [@wanpan11](https://github.com/wanpan11) - 🐞 修复 Select options 属性透传至原生 DOM 导致 React 未知属性警告的问题。[#56341](https://github.com/ant-design/ant-design/pull/56341) [@afc163](https://github.com/afc163) -- 🤖 杂项:优化 TypeScript 类型定义。[#56401](https://github.com/ant-design/ant-design/pull/56401) [@meet-student](https://github.com/meet-student) ## 6.1.2 From 0a89f9cf2183ef291f0fdd4d52c1366bc10bdcf3 Mon Sep 17 00:00:00 2001 From: Guo Yunhe Date: Mon, 29 Dec 2025 14:14:14 +0800 Subject: [PATCH 14/14] docs: fix sandpack template (#56405) --- .dumi/theme/builtins/Sandpack/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/.dumi/theme/builtins/Sandpack/index.tsx b/.dumi/theme/builtins/Sandpack/index.tsx index 7a5f218593..35e1ccaeb0 100644 --- a/.dumi/theme/builtins/Sandpack/index.tsx +++ b/.dumi/theme/builtins/Sandpack/index.tsx @@ -83,6 +83,7 @@ const Sandpack: React.FC> = (props) => {