From 8a76266dd048fbc4fd31718c4f36df9d92b821aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:01:35 +0800 Subject: [PATCH 01/20] chore(deps-dev): bump the dev-dependencies group with 1 update (#47394) Updates the requirements on [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) to permit the latest version. Updates `eslint-plugin-unicorn` to 51.0.1 - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v51.0.0...v51.0.1) --- updated-dependencies: - dependency-name: eslint-plugin-unicorn dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 863e4182f4..c6f4ccdf71 100644 --- a/package.json +++ b/package.json @@ -244,7 +244,7 @@ "eslint-plugin-markdown": "^3.0.1", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-unicorn": "^51.0.0", + "eslint-plugin-unicorn": "^51.0.1", "fast-glob": "^3.3.2", "fetch-jsonp": "^1.3.0", "fs-extra": "^11.2.0", From 3d1c81db9236e641bdc359d8efce15f1067e55f3 Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 7 Feb 2024 20:22:31 +0800 Subject: [PATCH 02/20] fix: Dropdown should not display when items is empty array (#47375) * fix: Dropdown should not display when items is empty array * Apply suggestions from code review Signed-off-by: afc163 --------- Signed-off-by: afc163 --- components/dropdown/style/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/dropdown/style/index.ts b/components/dropdown/style/index.ts index a2ca0af002..cf3dd59538 100644 --- a/components/dropdown/style/index.ts +++ b/components/dropdown/style/index.ts @@ -194,6 +194,11 @@ const genBaseStyle: GenerateStyle = (token) => { boxShadow: token.boxShadowSecondary, ...genFocusStyle(token), + '&:empty': { + padding: 0, + boxShadow: 'none', + }, + [`${menuCls}-item-group-title`]: { padding: `${unit(paddingBlock!)} ${unit(controlPaddingHorizontal)}`, color: token.colorTextDescription, From 52fdbb47d9a9a695663e98933c158b1bf53bb35a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E8=B4=A7=E7=88=B1=E5=90=83=E7=99=BD=E8=90=9D?= =?UTF-8?q?=E5=8D=9C?= Date: Wed, 7 Feb 2024 20:29:24 +0800 Subject: [PATCH 03/20] fix: datePicker arrow out of bound (#47389) * fix: datePicker arrow out of bound * chore: use logic prop --- components/date-picker/style/index.ts | 7 ++++++- package.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/components/date-picker/style/index.ts b/components/date-picker/style/index.ts index cf17b1aad2..f27082aae0 100644 --- a/components/date-picker/style/index.ts +++ b/components/date-picker/style/index.ts @@ -364,9 +364,14 @@ const genPickerStyle: GenerateStyle = (token) => { position: 'absolute', zIndex: 1, display: 'none', - marginInlineStart: token.calc(paddingInline).mul(1.5).equal(), + paddingInline: token.calc(paddingInline).mul(1.5).equal(), + boxSizing: 'content-box', transition: `left ${motionDurationSlow} ease-out`, ...genRoundedArrow(token, colorBgElevated, boxShadowPopoverArrow), + + '&:before': { + insetInlineStart: token.calc(paddingInline).mul(1.5).equal(), + }, }, [`${componentCls}-panel-container`]: { diff --git a/package.json b/package.json index c6f4ccdf71..9c130f3c7c 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,7 @@ "rc-motion": "^2.9.0", "rc-notification": "~5.3.0", "rc-pagination": "~4.0.4", - "rc-picker": "~4.0.0-alpha.44", + "rc-picker": "~4.1.1", "rc-progress": "~3.5.1", "rc-rate": "~2.12.0", "rc-resize-observer": "^1.4.0", From a49d2d5ea32e4a1ec608a2a18a3a49080487a4ea Mon Sep 17 00:00:00 2001 From: afc163 Date: Thu, 8 Feb 2024 13:11:09 +0800 Subject: [PATCH 04/20] fix: Steps inline broken style (#47406) --- components/steps/style/inline.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/steps/style/inline.ts b/components/steps/style/inline.ts index 2425f2ece1..44180e6676 100644 --- a/components/steps/style/inline.ts +++ b/components/steps/style/inline.ts @@ -42,6 +42,9 @@ const genStepsInlineStyle: GenerateStyle = (token) => { }, [`${componentCls}-icon-dot`]: { borderRadius: token.calc(token.fontSizeSM).div(4).equal(), + '&::after': { + display: 'none', + }, }, }, From c329efe45fac12a5eec5d7f182742deb5ac0bd67 Mon Sep 17 00:00:00 2001 From: afc163 Date: Thu, 8 Feb 2024 13:56:18 +0800 Subject: [PATCH 05/20] docs: tweak contributors fallback style (#47407) --- .dumi/theme/slots/Content/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dumi/theme/slots/Content/index.tsx b/.dumi/theme/slots/Content/index.tsx index efb9d231e4..d927a5b281 100644 --- a/.dumi/theme/slots/Content/index.tsx +++ b/.dumi/theme/slots/Content/index.tsx @@ -100,7 +100,7 @@ const Content: React.FC = ({ children }) => { juejinLink={meta.frontmatter.juejin_url} /> - + }> From 58f4c20560fd7a82ce4c9a930ccabbaaacd6733c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 20:27:54 +0800 Subject: [PATCH 06/20] chore(deps-dev): bump @types/gtag.js from 0.0.18 to 0.0.19 (#47411) Bumps [@types/gtag.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/gtag.js) from 0.0.18 to 0.0.19. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/gtag.js) --- updated-dependencies: - dependency-name: "@types/gtag.js" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9c130f3c7c..c68b0fc897 100644 --- a/package.json +++ b/package.json @@ -188,7 +188,7 @@ "@testing-library/user-event": "^14.5.2", "@types/ali-oss": "^6.16.11", "@types/fs-extra": "^11.0.4", - "@types/gtag.js": "^0.0.18", + "@types/gtag.js": "^0.0.19", "@types/http-server": "^0.12.4", "@types/inquirer": "^9.0.7", "@types/isomorphic-fetch": "^0.0.39", From b12de1f2ab1ae8c9557dd384a23ab03ad15c714e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 20:28:17 +0800 Subject: [PATCH 07/20] chore(deps-dev): bump the dev-dependencies group with 2 updates (#47410) --- updated-dependencies: - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-fast-marquee dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c68b0fc897..b6d1e3e3a6 100644 --- a/package.json +++ b/package.json @@ -209,7 +209,7 @@ "@types/qs": "^6.9.11", "@types/react": "^18.2.55", "@types/react-copy-to-clipboard": "^5.0.7", - "@types/react-dom": "^18.2.18", + "@types/react-dom": "^18.2.19", "@types/react-highlight-words": "^0.16.7", "@types/react-resizable": "^3.0.7", "@types/semver": "^7.5.6", @@ -296,7 +296,7 @@ "react-countup": "^6.5.0", "react-dom": "^18.2.0", "react-draggable": "^4.4.6", - "react-fast-marquee": "^1.6.3", + "react-fast-marquee": "^1.6.4", "react-highlight-words": "^0.20.0", "react-infinite-scroll-component": "^6.1.0", "react-intersection-observer": "^9.7.0", From 7b86dd60b56ae9633ccfc8ec632bb7c19fab8ffc Mon Sep 17 00:00:00 2001 From: daisy <47104575+linxianxi@users.noreply.github.com> Date: Fri, 9 Feb 2024 14:47:39 +0800 Subject: [PATCH 08/20] docs: Table colSpan render -> onCell (#47392) * docs: Table colSpan render -> onCell * Update components/table/demo/colspan-rowspan.md Signed-off-by: afc163 --------- Signed-off-by: afc163 Co-authored-by: afc163 --- components/table/demo/colspan-rowspan.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/table/demo/colspan-rowspan.md b/components/table/demo/colspan-rowspan.md index 3cf80dc28b..3cf874cb3d 100644 --- a/components/table/demo/colspan-rowspan.md +++ b/components/table/demo/colspan-rowspan.md @@ -2,10 +2,10 @@ 表头只支持列合并,使用 column 里的 colSpan 进行设置。 -表格支持行/列合并,使用 render 里的单元格属性 colSpan 或者 rowSpan 设值为 0 时,设置的表格不会渲染。 +表格支持行/列合并,当 `onCell` 里的单元格属性 `colSpan` 或者 `rowSpan` 设值为 0 时,设置的表格不会渲染。 ## en-US Table column title supports `colSpan` that set in `column`. -Table cell supports `colSpan` and `rowSpan` that set in render return object. When each of them is set to `0`, the cell will not be rendered. +Table cell supports `colSpan` and `rowSpan` that set in onCell return object. When each of them is set to `0`, the cell will not be rendered. From ad5caa005534e5c90ccea5d58a9d0a43dc78e983 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 20:42:22 +0800 Subject: [PATCH 09/20] chore(deps-dev): bump the dev-dependencies group with 2 updates (#47415) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tar-fs dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b6d1e3e3a6..e12c9d81ef 100644 --- a/package.json +++ b/package.json @@ -200,7 +200,7 @@ "@types/jsdom": "^21.1.6", "@types/lodash": "^4.14.202", "@types/minimist": "^1.2.5", - "@types/node": "^20.11.16", + "@types/node": "^20.11.17", "@types/nprogress": "^0.2.3", "@types/pixelmatch": "^5.2.6", "@types/pngjs": "^6.0.4", @@ -322,7 +322,7 @@ "stylelint-prettier": "^5.0.0", "sylvanas": "^0.6.1", "tar": "^6.2.0", - "tar-fs": "^3.0.4", + "tar-fs": "^3.0.5", "terser": "^5.27.0", "tsx": "^4.7.0", "typedoc": "^0.25.7", From ae9e25f05889e5fe6c970b30737ae2bd78cc3e6b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 09:10:25 +0800 Subject: [PATCH 10/20] chore(deps): update dependency jest-puppeteer to v10 (#47424) 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 e12c9d81ef..12d86936d4 100644 --- a/package.json +++ b/package.json @@ -264,7 +264,7 @@ "jest-environment-jsdom": "^29.7.0", "jest-environment-node": "^29.7.0", "jest-image-snapshot": "^6.4.0", - "jest-puppeteer": "^9.0.2", + "jest-puppeteer": "^10.0.0", "jquery": "^3.7.1", "jsdom": "^24.0.0", "jsonml-to-react-element": "^1.1.11", From 8c9eea3bb294f9092a7b67081b63334af9b2670d Mon Sep 17 00:00:00 2001 From: Carla Paiva Date: Mon, 12 Feb 2024 02:34:09 -0300 Subject: [PATCH 11/20] demo: typo of onChange func parameter on cascader basic example (#47427) --- components/cascader/demo/basic.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cascader/demo/basic.tsx b/components/cascader/demo/basic.tsx index 051f9d11e3..5c51fdec24 100644 --- a/components/cascader/demo/basic.tsx +++ b/components/cascader/demo/basic.tsx @@ -42,7 +42,7 @@ const options: Option[] = [ }, ]; -const onChange = (value: string[]) => { +const onChange = (value: (string | number)[]) => { console.log(value); }; From f57ec7f8f4fcefb522ce4dec670cbcd087c1a607 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 21:46:34 +0800 Subject: [PATCH 12/20] chore(deps-dev): bump the dev-dependencies group with 4 updates (#47429) --- updated-dependencies: - dependency-name: "@codesandbox/sandpack-react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/semver" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-intersection-observer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 12d86936d4..a5e21f6658 100644 --- a/package.json +++ b/package.json @@ -170,7 +170,7 @@ "@antv/g6": "^4.8.24", "@babel/eslint-plugin": "^7.23.5", "@biomejs/biome": "^1.5.3", - "@codesandbox/sandpack-react": "^2.12.0", + "@codesandbox/sandpack-react": "^2.12.1", "@dnd-kit/core": "^6.1.0", "@dnd-kit/modifiers": "^7.0.0", "@dnd-kit/sortable": "^8.0.0", @@ -212,7 +212,7 @@ "@types/react-dom": "^18.2.19", "@types/react-highlight-words": "^0.16.7", "@types/react-resizable": "^3.0.7", - "@types/semver": "^7.5.6", + "@types/semver": "^7.5.7", "@types/tar": "^6.1.11", "@types/throttle-debounce": "^5.0.2", "@types/warning": "^3.0.3", @@ -299,7 +299,7 @@ "react-fast-marquee": "^1.6.4", "react-highlight-words": "^0.20.0", "react-infinite-scroll-component": "^6.1.0", - "react-intersection-observer": "^9.7.0", + "react-intersection-observer": "^9.8.0", "react-resizable": "^3.0.5", "react-router-dom": "^6.22.0", "react-sticky-box": "^2.0.5", @@ -324,7 +324,7 @@ "tar": "^6.2.0", "tar-fs": "^3.0.5", "terser": "^5.27.0", - "tsx": "^4.7.0", + "tsx": "^4.7.1", "typedoc": "^0.25.7", "typescript": "~5.3.3", "vanilla-jsoneditor": "^0.21.5", From a886fffcae3020882033c32d01e01d497ebac0a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 23:06:19 +0800 Subject: [PATCH 13/20] chore(deps-dev): update typedoc requirement from ^0.25.7 to ^0.25.8 (#47430) * chore(deps-dev): update typedoc requirement from ^0.25.7 to ^0.25.8 Updates the requirements on [typedoc](https://github.com/TypeStrong/TypeDoc) to permit the latest version. - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.25.7...v0.25.8) --- updated-dependencies: - dependency-name: typedoc dependency-type: direct:development ... Signed-off-by: dependabot[bot] * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a5e21f6658..7a9e49d939 100644 --- a/package.json +++ b/package.json @@ -325,7 +325,7 @@ "tar-fs": "^3.0.5", "terser": "^5.27.0", "tsx": "^4.7.1", - "typedoc": "^0.25.7", + "typedoc": "^0.25.8", "typescript": "~5.3.3", "vanilla-jsoneditor": "^0.21.5", "vanilla-tilt": "^1.8.1", From aea5e17f35ad6b1f360a6b03b381d36571c36336 Mon Sep 17 00:00:00 2001 From: MadCcc Date: Mon, 12 Feb 2024 23:17:53 +0800 Subject: [PATCH 14/20] docs: changelog 5.14.1 (#47421) * docs: changelog 5.14.1 * Apply suggestions from code review Co-authored-by: lijianan <574980606@qq.com> Signed-off-by: MadCcc <1075746765@qq.com> --------- Signed-off-by: MadCcc <1075746765@qq.com> Co-authored-by: lijianan <574980606@qq.com> --- CHANGELOG.en-US.md | 12 ++++++++++++ CHANGELOG.zh-CN.md | 12 ++++++++++++ package.json | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 0964e91878..1b0ab3e13b 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -16,6 +16,18 @@ tag: vVERSION --- +## 5.14.1 + +`2024-02-12` + +- 🐞 Fix Steps cannot interact correctly when `type="inline"`. [#47406](https://github.com/ant-design/ant-design/pull/47406) +- 🐞 Fix DatePicker & TimePicker arrow position not consider panel border radius distance. [#47389](https://github.com/ant-design/ant-design/pull/47389) +- 🐞 Fix Dropdown should not display when items is empty array. [#47375](https://github.com/ant-design/ant-design/pull/47375) +- 🐞 Fix Tag that should use `defaultBg` token with `bordered={false}`. [#47372](https://github.com/ant-design/ant-design/pull/47372) [@MadCcc](https://github.com/MadCcc) +- 🐞 MISC: Fix that `theme.inherit` should not affect `hashded` and `cssVar`. [#47360](https://github.com/ant-design/ant-design/pull/47360) [@MadCcc](https://github.com/MadCcc) +- 🐞 Fix Calendar panel not switch when change year or month. [#47361](https://github.com/ant-design/ant-design/pull/47361) +- 💄 Fix Table's sub-table style issue in virtual mode. [#47333](https://github.com/ant-design/ant-design/pull/47333) [@Enigama](https://github.com/Enigama) + ## 5.14.0 `2024-02-04` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 27a774c1b9..9e91f1e6f4 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -16,6 +16,18 @@ tag: vVERSION --- +## 5.14.1 + +`2024-02-12` + +- 🐞 修复 Steps `type="inline"` 时鼠标无法 hover 到正确的步骤上的问题。[#47406](https://github.com/ant-design/ant-design/pull/47406) +- 🐞 修复 DatePicker 与 TimePicker 弹出面板箭头没有考虑面板本身圆角的问题。[#47389](https://github.com/ant-design/ant-design/pull/47389) +- 🐞 修复 Dropdown `menu.items` 为空时依然显示的问题。[#47375](https://github.com/ant-design/ant-design/pull/47375) +- 🐞 修复 Tag 无边框模式没有正确使用 `defaultBg` 组件 token 的问题。[#47372](https://github.com/ant-design/ant-design/pull/47372) [@MadCcc](https://github.com/MadCcc) +- 🐞 杂项:修复主题 `inherit` 配置会隔断 `hashed` 和 `cssVar` 配置的问题。[#47360](https://github.com/ant-design/ant-design/pull/47360) [@MadCcc](https://github.com/MadCcc) +- 🐞 修复 Calendar 在切换年月时,面板没有跟着切换的问题。[#47361](https://github.com/ant-design/ant-design/pull/47361) +- 💄 修复 Table 在虚拟模式下子表格的样式问题。[#47333](https://github.com/ant-design/ant-design/pull/47333) [@Enigama](https://github.com/Enigama) + ## 5.14.0 `2024-02-04` diff --git a/package.json b/package.json index 7a9e49d939..cf07518912 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antd", - "version": "5.14.0", + "version": "5.14.1", "description": "An enterprise-class UI design language and React components implementation", "keywords": [ "ant", From 52fe1f2518b86ce8f43235823f135f5986d3bde1 Mon Sep 17 00:00:00 2001 From: MadCcc Date: Tue, 13 Feb 2024 17:13:33 +0800 Subject: [PATCH 15/20] docs: update changelog date (#47437) --- CHANGELOG.en-US.md | 2 +- CHANGELOG.zh-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 1b0ab3e13b..323c82f471 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -18,7 +18,7 @@ tag: vVERSION ## 5.14.1 -`2024-02-12` +`2024-02-13` - 🐞 Fix Steps cannot interact correctly when `type="inline"`. [#47406](https://github.com/ant-design/ant-design/pull/47406) - 🐞 Fix DatePicker & TimePicker arrow position not consider panel border radius distance. [#47389](https://github.com/ant-design/ant-design/pull/47389) diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 9e91f1e6f4..62c2779a96 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -18,7 +18,7 @@ tag: vVERSION ## 5.14.1 -`2024-02-12` +`2024-02-13` - 🐞 修复 Steps `type="inline"` 时鼠标无法 hover 到正确的步骤上的问题。[#47406](https://github.com/ant-design/ant-design/pull/47406) - 🐞 修复 DatePicker 与 TimePicker 弹出面板箭头没有考虑面板本身圆角的问题。[#47389](https://github.com/ant-design/ant-design/pull/47389) From e6b756ae9688d86e7b9ce1781ebca4033c643bf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 08:12:45 +0800 Subject: [PATCH 16/20] chore(deps-dev): bump the dev-dependencies group with 3 updates (#47438) * chore(deps-dev): bump the dev-dependencies group with 2 updates Bumps the dev-dependencies group with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 6.21.0 to 7.0.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.0.1/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.21.0 to 7.0.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.0.1/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com> --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cf07518912..85f00025b2 100644 --- a/package.json +++ b/package.json @@ -216,8 +216,8 @@ "@types/tar": "^6.1.11", "@types/throttle-debounce": "^5.0.2", "@types/warning": "^3.0.3", - "@typescript-eslint/eslint-plugin": "^6.21.0", - "@typescript-eslint/parser": "^6.21.0", + "@typescript-eslint/eslint-plugin": "^7.0.1", + "@typescript-eslint/parser": "^7.0.1", "ali-oss": "^6.20.0", "antd-img-crop": "^4.21.0", "antd-style": "^3.6.1", @@ -238,7 +238,7 @@ "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-compat": "^4.2.0", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-jest": "^27.6.3", + "eslint-plugin-jest": "^27.8.0", "eslint-plugin-jsx-a11y": "^6.8.0", "eslint-plugin-lodash": "^7.4.0", "eslint-plugin-markdown": "^3.0.1", From ff6f9c5a8f82a9c510522530ea1bf42b684da40c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 00:00:51 +0800 Subject: [PATCH 17/20] chore(deps-dev): bump the dev-dependencies group with 1 update (#47442) Updates the requirements on [husky](https://github.com/typicode/husky) to permit the latest version. Updates `husky` to 9.0.11 - [Release notes](https://github.com/typicode/husky/releases) - [Commits](https://github.com/typicode/husky/compare/v9.0.10...v9.0.11) --- updated-dependencies: - dependency-name: husky dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 85f00025b2..ac788d05a7 100644 --- a/package.json +++ b/package.json @@ -252,7 +252,7 @@ "glob": "^10.3.10", "html2sketch": "^1.0.2", "http-server": "^14.1.1", - "husky": "^9.0.10", + "husky": "^9.0.11", "identity-obj-proxy": "^3.0.0", "immer": "^10.0.3", "inquirer": "^9.2.14", From a911bce4de3e976ac3c043374114297389e074fc Mon Sep 17 00:00:00 2001 From: kiner-tang <1127031143@qq.com> Date: Thu, 15 Feb 2024 20:42:21 +0800 Subject: [PATCH 18/20] chore: use husky instead of husky install (#47445) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac788d05a7..abbd6734e9 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,7 @@ "lint-fix:demo": "npm run lint:demo -- --fix", "lint-fix:script": "npm run lint:script -- --fix", "pre-publish": "npm run test-all -- --skip-build && tsx ./scripts/pre-publish-notice.ts", - "prepare": "is-ci || husky install && dumi setup", + "prepare": "is-ci || husky && dumi setup", "prepublishOnly": "antd-tools run guard", "prettier": "prettier -c --write **/* --cache", "pub": "npm run version && npm run collect-token-statistic && npm run token-meta && antd-tools run pub", From 79d8ed0020249a301d99356744989d853362005e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 00:00:52 +0800 Subject: [PATCH 19/20] chore(deps-dev): update vanilla-jsoneditor requirement (#47450) Updates the requirements on [vanilla-jsoneditor](https://github.com/josdejong/svelte-jsoneditor) to permit the latest version. - [Release notes](https://github.com/josdejong/svelte-jsoneditor/releases) - [Changelog](https://github.com/josdejong/svelte-jsoneditor/blob/main/CHANGELOG.md) - [Commits](https://github.com/josdejong/svelte-jsoneditor/compare/v0.21.5...v0.21.6) --- updated-dependencies: - dependency-name: vanilla-jsoneditor dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index abbd6734e9..eb6b4efad7 100644 --- a/package.json +++ b/package.json @@ -327,7 +327,7 @@ "tsx": "^4.7.1", "typedoc": "^0.25.8", "typescript": "~5.3.3", - "vanilla-jsoneditor": "^0.21.5", + "vanilla-jsoneditor": "^0.21.6", "vanilla-tilt": "^1.8.1", "webpack": "^5.90.1", "webpack-bundle-analyzer": "^4.10.1", From 25fdde54863fd395067e4b1e1b20295213aa8e6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 00:04:57 +0800 Subject: [PATCH 20/20] chore(deps-dev): bump the dev-dependencies group with 3 updates (#47449) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index eb6b4efad7..78ead0a605 100644 --- a/package.json +++ b/package.json @@ -200,7 +200,7 @@ "@types/jsdom": "^21.1.6", "@types/lodash": "^4.14.202", "@types/minimist": "^1.2.5", - "@types/node": "^20.11.17", + "@types/node": "^20.11.18", "@types/nprogress": "^0.2.3", "@types/pixelmatch": "^5.2.6", "@types/pngjs": "^6.0.4", @@ -264,7 +264,7 @@ "jest-environment-jsdom": "^29.7.0", "jest-environment-node": "^29.7.0", "jest-image-snapshot": "^6.4.0", - "jest-puppeteer": "^10.0.0", + "jest-puppeteer": "^10.0.1", "jquery": "^3.7.1", "jsdom": "^24.0.0", "jsonml-to-react-element": "^1.1.11", @@ -323,7 +323,7 @@ "sylvanas": "^0.6.1", "tar": "^6.2.0", "tar-fs": "^3.0.5", - "terser": "^5.27.0", + "terser": "^5.27.1", "tsx": "^4.7.1", "typedoc": "^0.25.8", "typescript": "~5.3.3",