Browse Source
chore: resolutions fixed typescript version (#27407)
* chore: resolutions fixed typescript version
* docs: changelog
pull/27483/head
3.26.20
二货机器人
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
19 additions and
4 deletions
-
CHANGELOG.en-US.md
-
CHANGELOG.zh-CN.md
-
package.json
|
|
@ -15,6 +15,12 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 3.26.20 |
|
|
|
|
|
|
|
`2020-10-27` |
|
|
|
|
|
|
|
- 🐞 Fix Typescript definition issue with related Typescript version. |
|
|
|
|
|
|
|
## 3.26.19 |
|
|
|
|
|
|
|
`2020-10-25` |
|
|
@ -2709,7 +2715,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,12 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 3.26.20 |
|
|
|
|
|
|
|
`2020-10-27` |
|
|
|
|
|
|
|
- 🐞 修复 Typescript 版本导致的定义问题。 |
|
|
|
|
|
|
|
## 3.26.19 |
|
|
|
|
|
|
|
`2020-10-25` |
|
|
@ -2725,7 +2731,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.19", |
|
|
|
"version": "3.26.20", |
|
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
|
"keywords": [ |
|
|
|
"ant", |
|
|
@ -263,5 +263,8 @@ |
|
|
|
"maxSize": "60 kB" |
|
|
|
} |
|
|
|
], |
|
|
|
"title": "Ant Design" |
|
|
|
"title": "Ant Design", |
|
|
|
"resolutions": { |
|
|
|
"typescript": "3.8.3" |
|
|
|
} |
|
|
|
} |
|
|
|