mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
docs(✨): release 4.22.4 (#36952)
This commit is contained in:
parent
87d138ba56
commit
f8cb6eb05e
@ -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([
|
||||||
|
Loading…
Reference in New Issue
Block a user