Browse Source
docs: add 3.23.4 changelog (#18932 )
* add 3.23.4 changelog
* update desc
* adjust related desc
pull/18933/head
3.23.4
二货机器人
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with
30 additions and
3 deletions
CHANGELOG.en-US.md
CHANGELOG.zh-CN.md
components/tooltip/index.en-US.md
components/tooltip/index.tsx
components/tooltip/index.zh-CN.md
package.json
@ -15,6 +15,20 @@ timeline: true
---
## 3.23.4
`2019-09-21`
- 🐞 Fix item not disabled when Transfer is `disabled` . [#18849 ](https://github.com/ant-design/ant-design/pull/18849 )
- 🐞 Revert Dragger to class component to fix ref warning. [#18707 ](https://github.com/ant-design/ant-design/issues/18707 )
- 🐞 Fix Input `addonAfter` icon height bug in Chrome. [#18858 ](https://github.com/ant-design/ant-design/pull/18858 )
- 🐞 Fix Menu lost state when being collapsed to `0px` . [#18907 ](https://github.com/ant-design/ant-design/pull/18907 )
- 🐞 Disabled input should not trigger the action of suffix part. [#18900 ](https://github.com/ant-design/ant-design/pull/18900 )
- 🐞 Fix title and content of Alert not break line when long text exist. [#18929 ](https://github.com/ant-design/ant-design/pull/18929 )
- 💄 Add `@page-header-back-color` less variable. [#18887 ](https://github.com/ant-design/ant-design/pull/18887 )
- TypeScript
- 🐞 Fix Table event type definition. [#18910 ](https://github.com/ant-design/ant-design/pull/18910 )
## 3.23.3
`2019-09-16`
@ -15,6 +15,20 @@ timeline: true
---
## 3.23.4
`2019-09-21`
- 🐞 修复 Transfer `disabled` 下勾选框不被禁用的问题。[#18849](https://github.com/ant-design/ant-design/pull/18849)
- 🐞 回滚 Dragger 到 class component 以修复 ref 警告信息。[#18707](https://github.com/ant-design/ant-design/issues/18707)
- 🐞 修复 Input `addonAfter` 里图标高度在 Chrome 下偏大的问题。[#18858](https://github.com/ant-design/ant-design/pull/18858)
- 🐞 修复 Menu 在 `collapsedWidth={0}` 时,折叠后丢失 `selectedKeys` 状态的问题。[#18907](https://github.com/ant-design/ant-design/pull/18907)
- 🐞 修复 Input 在禁用状态时,后缀图标可点击的问题。[#18900](https://github.com/ant-design/ant-design/pull/18900)
- 🐞 修复 Alert 标题和内容过长不换行的问题。[#18929](https://github.com/ant-design/ant-design/pull/18929)
- 💄 增加 `@page-header-back-color` less 变量。[#18887](https://github.com/ant-design/ant-design/pull/18887)
- TypeScript
- 🐞 修复 Table 事件的类型定义。[#18910](https://github.com/ant-design/ant-design/pull/18910)
## 3.23.3
`2019-09-16`
@ -35,7 +35,6 @@ The following APIs are shared by Tooltip, Popconfirm, Popover.
| trigger | Tooltip trigger mode | `hover` \| `focus` \| `click` \| `contextMenu` | `hover` | |
| visible | Whether the floating tooltip card is visible or not | boolean | `false` | |
| onVisibleChange | Callback executed when visibility of the tooltip card is changed | (visible) => void | - | |
| destroyTooltipOnHide | whether destroy tooltip when tooltip is hidden | boolean | false | |
| align | this value will be merged into placement's config, please refer to the settings [rc-tooltip ](https://github.com/react-component/tooltip ) | Object | - | 3.10.0 |
## Note
@ -59,6 +59,7 @@ export interface AbstractTooltipProps {
children? : React.ReactNode ;
// align is a more higher api
align? : TooltipAlignConfig ;
/** Internal. Hide tooltip when hidden. This will be renamed in future. */
destroyTooltipOnHide? : boolean ;
}
@ -37,7 +37,6 @@ title: Tooltip
| trigger | 触发行为,可选 `hover/focus/click/contextMenu` | string | hover | |
| visible | 用于手动控制浮层显隐 | boolean | false | |
| onVisibleChange | 显示隐藏的回调 | (visible) => void | 无 | |
| destroyTooltipOnHide | 是否在隐藏时销毁 Tooltip | boolean | false | |
| align | 该值将合并到 placement 的配置中,设置参考 [rc-tooltip ](https://github.com/react-component/tooltip ) | Object | 无 | 3.10.0 |
## 注意
@ -1,6 +1,6 @@
{
"name" : "antd" ,
"version" : "3.23.3 " ,
"version" : "3.23.4 " ,
"description" : "An enterprise-class UI design language and React components implementation" ,
"keywords" : [
"ant" ,