Skip to content

Commit 0f7d778

Browse files
committed
bump 1.3.1
1 parent 67c3186 commit 0f7d778

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

CHANGELOG.en-US.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 1.3.1
14+
`2019-01-15`
15+
16+
- 🐞 Fixed the `Table` component could not be scrolled under ie.。[#390](https://github.com/vueComponent/ant-design-vue/issues/390)
17+
- 🐞 Fix `Form` does not clear that does not need to check the field.[#367](https://github.com/vueComponent/ant-design-vue/issues/367)
18+
1319
## 1.3.0
1420
`2019-01-12`
1521

@@ -25,12 +31,12 @@
2531
Component Fixes / Enhancements:
2632

2733
- 🌟 Avatar Added `srcSet` prop that is a list of sources to use for different screen resolutions.
28-
- 🌟 Notification Added `onClick` prop that is called when the notification is clicked.
34+
- 🌟 Notification Added `onClick` prop that is called when the notification is clicked.
2935
- Transfer
3036
- 🌟 Added `search` event that is executed when search field are changed and deprecated `searchChange` event.
31-
- 🌟 Added `disabled` prop that whether disable transfer.
37+
- 🌟 Added `disabled` prop that whether disable transfer.
3238
- 🌟 Refactor Badge, support `count` as custom component.
33-
- Slider
39+
- Slider
3440
- 🌟 Added `tooltipVisible` prop that whether Tooltip will always show.
3541
- 🌟 Optimize the focus effect
3642
- 🐞 Fix tooltip does not display the problem when focus through the keyboard tab.
@@ -43,9 +49,9 @@ Component Fixes / Enhancements:
4349
- 🌟 customCell added `index` prop.
4450
- Select
4551
- 🌟 Added `removeIcon``clearIcon``menuItemSelectedIcon` prop,allow setting `remove``clear``menuItemSelected` custom icons.
46-
- 🌟 Added `dropdownRender` prop that custom dropdown content.
52+
- 🌟 Added `dropdownRender` prop that custom dropdown content.
4753
- 🌟 Added `loading` prop that indicate loading state.
48-
- 🌟 Optimize the display of the Button when it contains an Icon.
54+
- 🌟 Optimize the display of the Button when it contains an Icon.
4955
- ⚡️ Refactor Tag component with less code and better performance.
5056
- 💄 Added `title` prop that Menu.Item support tooltip title when collapsed.
5157
- 💄 Chore Card header and loading UI.

CHANGELOG.zh-CN.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
---
1212

13+
## 1.3.1
14+
`2019-01-15`
15+
16+
- 🐞 修复Table组件在ie下滚轮失效的问题。[#390](https://github.com/vueComponent/ant-design-vue/issues/390)
17+
- 🐞 修复Form没有清除不在需要校验字段问题。[#367](https://github.com/vueComponent/ant-design-vue/issues/367)
18+
1319
## 1.3.0
1420
`2019-01-12`
1521

@@ -30,7 +36,7 @@
3036
- 🌟 增加 `search` 事件,搜索框内容时改变时的回调函数,并废弃 `searchChange` 事件。
3137
- 🌟 增加 `disabled` 属性,用于禁用搜索框。
3238
- 🌟 Badge 进行了重构,`count` 支持自定义组件。
33-
- Slider
39+
- Slider
3440
- 🌟 增加 `tooltipVisible` 属性,用于 Tooltip 是否始终显示。
3541
- 🌟 优化focus效果
3642
- 🐞 修复键盘tab键聚焦时,Tooltip不显示问题。
@@ -45,7 +51,7 @@
4551
- 🌟 增加 `removeIcon``clearIcon``menuItemSelectedIcon` 属性,用于自定义删除、清空、选中的图标。
4652
- 🌟 增加 `dropdownRender` 属性, 用于自定义下拉框内容。
4753
- 🌟 增加 `loading` 属性, 用于展示加载中状态。
48-
- 🌟 优化 Button 在含有Icon时的显示效果。
54+
- 🌟 优化 Button 在含有Icon时的显示效果。
4955
- ⚡️ 重构 Tag 组件,简化代码并提升性能。
5056
- 💄 Menu.Item 组件增加 `title` 属性,用于在收缩时展示的悬浮标题。
5157
- 💄 微调 Card 头部和加载中的样式细节。

components/date-picker/__tests__/RangePicker.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,10 @@ describe('RangePicker', () => {
406406
);
407407
await asyncExpect(() => {
408408
wrapper.find('.ant-calendar-picker-input').trigger('click');
409-
});
409+
}, 0);
410410
await asyncExpect(() => {
411411
$$('.ant-calendar-range-quick-selector .ant-tag')[0].click();
412-
}, 0);
412+
}, 1000);
413413
await asyncExpect(() => {
414414
expect(handleOpenChange).toBeCalledWith(false);
415415
});

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.0",
3+
"version": "1.3.1",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)