诸岳
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
17 additions and
3 deletions
-
CHANGELOG.en-US.md
-
CHANGELOG.zh-CN.md
-
package.json
|
|
@ -15,6 +15,13 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 3.26.16 |
|
|
|
|
|
|
|
`2020-04-26` |
|
|
|
|
|
|
|
- 🐞 Fix Carousel tabbed Radio/Checkbox to non-active slide. [#23380](https://github.com/ant-design/ant-design/pull/23380) |
|
|
|
- 🐞 Fix Table filter menu no height when less version is `2.x`. [#23272](https://github.com/ant-design/ant-design/pull/23272) |
|
|
|
|
|
|
|
## 3.26.15 |
|
|
|
|
|
|
|
`2020-04-03` |
|
|
@ -2680,7 +2687,7 @@ We provide a [migration tool](https://github.com/ant-design/antd-migration-helpe |
|
|
|
- 🙅 Deprecated `onRowClick`, `onRowDoubleClick`, `onRowContextMenu`, `onRowMouseEnter`, `onRowMouseLeave`, please use `onRow` instead. |
|
|
|
```javascript |
|
|
|
<Table |
|
|
|
onRow={record => ({ |
|
|
|
onRow={(record) => ({ |
|
|
|
onClick: () => {}, |
|
|
|
onDoubleClick: () => {}, |
|
|
|
onContextMenu: () => {}, |
|
|
|
|
|
@ -15,6 +15,13 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 3.26.16 |
|
|
|
|
|
|
|
`2020-04-26` |
|
|
|
|
|
|
|
- 🐞 修复 Carousel 键盘切换到非活跃 slide 上的 Radio/Checkbox 的问题。[#23380](https://github.com/ant-design/ant-design/pull/23380) |
|
|
|
- 🐞 修复 Table 筛选菜单在 less 版本为 `2.x` 时不显示的问题。[#23272](https://github.com/ant-design/ant-design/pull/23272) |
|
|
|
|
|
|
|
## 3.26.15 |
|
|
|
|
|
|
|
`2020-04-03` |
|
|
@ -2696,7 +2703,7 @@ timeline: true |
|
|
|
- 🙅 废弃以下属性 `onRowClick`,`onRowDoubleClick`、`onRowContextMenu`、`onRowMouseEnter`、`onRowMouseLeave`,请使用 `onRow` 代替。 |
|
|
|
```javascript |
|
|
|
<Table |
|
|
|
onRow={record => ({ |
|
|
|
onRow={(record) => ({ |
|
|
|
onClick: () => {}, |
|
|
|
onDoubleClick: () => {}, |
|
|
|
onContextMenu: () => {}, |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"name": "antd", |
|
|
|
"version": "3.26.15", |
|
|
|
"version": "3.26.16", |
|
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
|
"keywords": [ |
|
|
|
"ant", |
|
|
|