afc163
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
25 additions and
2 deletions
-
CHANGELOG.en-US.md
-
CHANGELOG.zh-CN.md
-
package.json
-
scripts/print-changelog.js
|
@ -15,6 +15,16 @@ timeline: true |
|
|
|
|
|
|
|
|
--- |
|
|
--- |
|
|
|
|
|
|
|
|
|
|
|
## 4.22.4 |
|
|
|
|
|
|
|
|
|
|
|
- 💄 Fix PageHeader focus style stay after clicking it. [#36902](https://github.com/ant-design/ant-design/pull/36902) |
|
|
|
|
|
- 💄 Fix Drawer nesting content-wrapper style. [#36845](https://github.com/ant-design/ant-design/pull/36845) [@yanm1ng](https://github.com/yanm1ng) |
|
|
|
|
|
- 🐞 Fix Mentions popup shift when contain scrollbar. [#36898](https://github.com/ant-design/ant-design/pull/36898) [@JarvisArt](https://github.com/JarvisArt) |
|
|
|
|
|
- TypeScript |
|
|
|
|
|
- 🤖 Fix Avatar `onClick` type missing. [#36940](https://github.com/ant-design/ant-design/pull/36940) [@kungege](https://github.com/kungege) |
|
|
|
|
|
- 🤖 Fix Table `onChange` argument `sorter` type error. [#36710](https://github.com/ant-design/ant-design/pull/36710) [@kungege](https://github.com/kungege) |
|
|
|
|
|
- 🤖 Input `data-*` should not be required. [#36858](https://github.com/ant-design/ant-design/pull/36858) [@yifanwww](https://github.com/yifanwww) |
|
|
|
|
|
|
|
|
## 4.22.3 |
|
|
## 4.22.3 |
|
|
|
|
|
|
|
|
`2022-08-01` |
|
|
`2022-08-01` |
|
|
|
@ -15,6 +15,16 @@ timeline: true |
|
|
|
|
|
|
|
|
--- |
|
|
--- |
|
|
|
|
|
|
|
|
|
|
|
## 4.22.4 |
|
|
|
|
|
|
|
|
|
|
|
- 💄 修复 PageHeader 返回按钮点击后依然有聚焦样式的问题。[#36902](https://github.com/ant-design/ant-design/pull/36902) |
|
|
|
|
|
- 💄 修复抽屉 Drawer 组件嵌套时,子抽屉的样式被父抽屉影响的问题。[#36845](https://github.com/ant-design/ant-design/pull/36845) [@yanm1ng](https://github.com/yanm1ng) |
|
|
|
|
|
- 🐞 修复 Mentions 内有滚动条时弹出层偏移的问题。[#36898](https://github.com/ant-design/ant-design/pull/36898) [@JarvisArt](https://github.com/JarvisArt) |
|
|
|
|
|
- TypeScript |
|
|
|
|
|
- 🤖 修复 Avatar `onClick` 属性定义丢失的问题。[#36940](https://github.com/ant-design/ant-design/pull/36940) [@kungege](https://github.com/kungege) |
|
|
|
|
|
- 🤖 修复 Table `onChange` 参数 `sorter` 类型报错的问题。[#36710](https://github.com/ant-design/ant-design/pull/36710) [@kungege](https://github.com/kungege) |
|
|
|
|
|
- 🤖 Input `data-*` 属性将不再是必传参数。[#36858](https://github.com/ant-design/ant-design/pull/36858) [@yifanwww](https://github.com/yifanwww) |
|
|
|
|
|
|
|
|
## 4.22.3 |
|
|
## 4.22.3 |
|
|
|
|
|
|
|
|
`2022-08-01` |
|
|
`2022-08-01` |
|
|
|
@ -1,6 +1,6 @@ |
|
|
{ |
|
|
{ |
|
|
"name": "antd", |
|
|
"name": "antd", |
|
|
"version": "4.22.3", |
|
|
"version": "4.22.4", |
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
"title": "Ant Design", |
|
|
"title": "Ant Design", |
|
|
"keywords": [ |
|
|
"keywords": [ |
|
|
|
@ -58,7 +58,10 @@ async function printLog() { |
|
|
type: 'list', |
|
|
type: 'list', |
|
|
name: 'fromVersion', |
|
|
name: 'fromVersion', |
|
|
message: '🏷 Please choose tag to compare with current branch:', |
|
|
message: '🏷 Please choose tag to compare with current branch:', |
|
|
choices: tags.all.reverse().slice(0, 10), |
|
|
choices: tags.all |
|
|
|
|
|
.filter(item => !item.includes('experimental')) |
|
|
|
|
|
.reverse() |
|
|
|
|
|
.slice(0, 10), |
|
|
}, |
|
|
}, |
|
|
]); |
|
|
]); |
|
|
let { toVersion } = await inquirer.prompt([ |
|
|
let { toVersion } = await inquirer.prompt([ |
|
|