Skip to content

Commit 1234627

Browse files
committed
bump 1.3.9
1 parent 056ef16 commit 1234627

File tree

5 files changed

+37
-1
lines changed

5 files changed

+37
-1
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ es/
77
lib/
88
_site/
99
dist/
10+
package.json

CHANGELOG.en-US.md

+14
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@
1010

1111
---
1212

13+
## 1.3.9
14+
`2019-05-26`
15+
- 🐞 Fix `TreeSelect` without `dataRef` [#712](https://github.com/vueComponent/ant-design-vue/issues/712)
16+
- 🌟 `Tooltip` add `destroyTooltipOnHide` to identify whether to destroy tooltip after hiding [#727](https://github.com/vueComponent/ant-design-vue/issues/727)
17+
- 🐞 Fix `Avatar` does not update the problem when setting `src` dynamically [#731](https://github.com/vueComponent/ant-design-vue/issues/731)
18+
- 🐞 Fix `LocaleProvider` change `moment` language does not work [28b7a6](https://github.com/vueComponent/ant-design-vue/commit/28b7a68dc48a0a994e98063d462b99380e3ee547)
19+
- 🌟 `Modal.confirm` add `closable` configuration [#798](https://github.com/vueComponent/ant-design-vue/pull/798)
20+
- 🐞 Fixed a problem when `Select` custom `dropdownRender` was not automatically closed [#644](https://github.com/vueComponent/ant-design-vue/issues/644)
21+
- 🐞 Fix the problem of removing Dom error under ie9, no need to introduce polyfill separately [#705](https://github.com/vueComponent/ant-design-vue/issues/705)
22+
- 🐞 Fix `Input.Search` repeat mount id problem [#726](https://github.com/vueComponent/ant-design-vue/issues/726)
23+
- 🐞 Fix `Table` does not work when customizing expandIcon using function form [#751](https://github.com/vueComponent/ant-design-vue/issues/751)
24+
- 🐞 Fix `Icon` `extraCommonProps` property does not work [#737](https://github.com/vueComponent/ant-design-vue/issues/737)
25+
- 🐞 Fix `DirectoryTree` expandAction="doubleclick" does not work [#745](https://github.com/vueComponent/ant-design-vue/issues/745)
26+
1327
## 1.3.8
1428
`2019-04-04`
1529
- 🐞 Fix `Table` unclickable problem under IE [#504](https://github.com/vueComponent/ant-design-vue/issues/504)

CHANGELOG.zh-CN.md

+14
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@
1010

1111
---
1212

13+
## 1.3.9
14+
`2019-05-26`
15+
- 🐞 修复 `TreeSelect` 没有 `dataRef` 的问题 [#712](https://github.com/vueComponent/ant-design-vue/issues/712)
16+
- 🌟 `Tooltip` 添加 `destroyTooltipOnHide` 用于标识隐藏后是否销毁tooltip [#727](https://github.com/vueComponent/ant-design-vue/issues/727)
17+
- 🐞 修复 `Avatar` 动态设置 src 时不更新问题 [#731](https://github.com/vueComponent/ant-design-vue/issues/731)
18+
- 🐞 修复 `LocaleProvider` 更改 `moment` 语言不生效问题 [28b7a6](https://github.com/vueComponent/ant-design-vue/commit/28b7a68dc48a0a994e98063d462b99380e3ee547)
19+
- 🌟 `Modal.confirm` 新增 `closable` 配置 [#798](https://github.com/vueComponent/ant-design-vue/pull/798)
20+
- 🐞 修复 `Select` 自定义 `dropdownRender` 时,没能自动关闭的问题 [#644](https://github.com/vueComponent/ant-design-vue/issues/644)
21+
- 🐞 修复在 ie9 下移除 Dom 报错问题,无需单独引入 polyfill [#705](https://github.com/vueComponent/ant-design-vue/issues/705)
22+
- 🐞 修复 `Input.Search` 重复挂载 id 问题 [#726](https://github.com/vueComponent/ant-design-vue/issues/726)
23+
- 🐞 修复 `Table` 使用函数形式自定义 expandIcon 时不生效问题 [#751](https://github.com/vueComponent/ant-design-vue/issues/751)
24+
- 🐞 修复 `Icon` extraCommonProps 属性不生效问题 [#737](https://github.com/vueComponent/ant-design-vue/issues/737)
25+
- 🐞 修复 `DirectoryTree` expandAction="doubleclick" 不生效问题 [#745](https://github.com/vueComponent/ant-design-vue/issues/745)
26+
1327
## 1.3.8
1428
`2019-04-04`
1529
- 🐞 修复 `Table` 在 IE 下不可点击问题 [#504](https://github.com/vueComponent/ant-design-vue/issues/504)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "1.3.8",
3+
"version": "1.3.9",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

types/tootip/common.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,13 @@ export declare class TooltipCommon extends AntdComponent {
9595
*/
9696
visible: boolean;
9797

98+
/**
99+
* Whether to destroy tooltip on hide
100+
* @default false
101+
* @type boolean
102+
*/
103+
destroyTooltipOnHide: boolean;
104+
98105
/**
99106
* this value will be merged into placement's config, please refer to the settings dom-align
100107
* @type object

0 commit comments

Comments
 (0)