Skip to content

Commit

Permalink
bump 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Jan 15, 2019
1 parent 67c3186 commit 0f7d778
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@

---

## 1.3.1
`2019-01-15`

- 🐞 Fixed the `Table` component could not be scrolled under ie.。[#390](https://github.com/vueComponent/ant-design-vue/issues/390)
- 🐞 Fix `Form` does not clear that does not need to check the field.[#367](https://github.com/vueComponent/ant-design-vue/issues/367)

## 1.3.0
`2019-01-12`

Expand All @@ -25,12 +31,12 @@
Component Fixes / Enhancements:

- 🌟 Avatar Added `srcSet` prop that is a list of sources to use for different screen resolutions.
- 🌟 Notification Added `onClick` prop that is called when the notification is clicked.
- 🌟 Notification Added `onClick` prop that is called when the notification is clicked.
- Transfer
- 🌟 Added `search` event that is executed when search field are changed and deprecated `searchChange` event.
- 🌟 Added `disabled` prop that whether disable transfer.
- 🌟 Added `disabled` prop that whether disable transfer.
- 🌟 Refactor Badge, support `count` as custom component.
- Slider
- Slider
- 🌟 Added `tooltipVisible` prop that whether Tooltip will always show.
- 🌟 Optimize the focus effect
- 🐞 Fix tooltip does not display the problem when focus through the keyboard tab.
Expand All @@ -43,9 +49,9 @@ Component Fixes / Enhancements:
- 🌟 customCell added `index` prop.
- Select
- 🌟 Added `removeIcon``clearIcon``menuItemSelectedIcon` prop,allow setting `remove``clear``menuItemSelected` custom icons.
- 🌟 Added `dropdownRender` prop that custom dropdown content.
- 🌟 Added `dropdownRender` prop that custom dropdown content.
- 🌟 Added `loading` prop that indicate loading state.
- 🌟 Optimize the display of the Button when it contains an Icon.
- 🌟 Optimize the display of the Button when it contains an Icon.
- ⚡️ Refactor Tag component with less code and better performance.
- 💄 Added `title` prop that Menu.Item support tooltip title when collapsed.
- 💄 Chore Card header and loading UI.
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@

---

## 1.3.1
`2019-01-15`

- 🐞 修复Table组件在ie下滚轮失效的问题。[#390](https://github.com/vueComponent/ant-design-vue/issues/390)
- 🐞 修复Form没有清除不在需要校验字段问题。[#367](https://github.com/vueComponent/ant-design-vue/issues/367)

## 1.3.0
`2019-01-12`

Expand All @@ -30,7 +36,7 @@
- 🌟 增加 `search` 事件,搜索框内容时改变时的回调函数,并废弃 `searchChange` 事件。
- 🌟 增加 `disabled` 属性,用于禁用搜索框。
- 🌟 Badge 进行了重构,`count` 支持自定义组件。
- Slider
- Slider
- 🌟 增加 `tooltipVisible` 属性,用于 Tooltip 是否始终显示。
- 🌟 优化focus效果
- 🐞 修复键盘tab键聚焦时,Tooltip不显示问题。
Expand All @@ -45,7 +51,7 @@
- 🌟 增加 `removeIcon``clearIcon``menuItemSelectedIcon` 属性,用于自定义删除、清空、选中的图标。
- 🌟 增加 `dropdownRender` 属性, 用于自定义下拉框内容。
- 🌟 增加 `loading` 属性, 用于展示加载中状态。
- 🌟 优化 Button 在含有Icon时的显示效果。
- 🌟 优化 Button 在含有Icon时的显示效果。
- ⚡️ 重构 Tag 组件,简化代码并提升性能。
- 💄 Menu.Item 组件增加 `title` 属性,用于在收缩时展示的悬浮标题。
- 💄 微调 Card 头部和加载中的样式细节。
Expand Down
4 changes: 2 additions & 2 deletions components/date-picker/__tests__/RangePicker.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,10 @@ describe('RangePicker', () => {
);
await asyncExpect(() => {
wrapper.find('.ant-calendar-picker-input').trigger('click');
});
}, 0);
await asyncExpect(() => {
$$('.ant-calendar-range-quick-selector .ant-tag')[0].click();
}, 0);
}, 1000);
await asyncExpect(() => {
expect(handleOpenChange).toBeCalledWith(false);
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ant-design-vue",
"version": "1.3.0",
"version": "1.3.1",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [
Expand Down

0 comments on commit 0f7d778

Please sign in to comment.