mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
chore: resolutions fixed typescript version (#27407)
* chore: resolutions fixed typescript version * docs: changelog
This commit is contained in:
parent
b5d3a90b96
commit
bc0f0b62ea
@ -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"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user