Skip to content

Commit

Permalink
release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Apr 2, 2020
1 parent 34ab34a commit 4314d97
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 17 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@

---

## 1.5.1

`2020-04-02`

- 🐞 Fix `PageHeader` cannot hide backIcon [#1987](https://github.com/vueComponent/ant-design-vue/pull/1987)
- 🐞 Fix `Pagination` doesn't update when total changes [#1989](https://github.com/vueComponent/ant-design-vue/pull/1989)
- 🐞 Fix placeholder does not disappear when inputting `TreeSelect` in Chinese [#1994](https://github.com/vueComponent/ant-design-vue/pull/1994)
- 🐞 Fix `Table` customRender cannot customize class style [#2004](https://github.com/vueComponent/ant-design-vue/pull/2004)
- 🐞 Fix `Form` missing slot content when using Form.create [#1998](https://github.com/vueComponent/ant-design-vue/pull/1998)
- 🐞 Fix `Textarea` scroll bar flickering problem [#1964](https://github.com/vueComponent/ant-design-vue/pull/1964)
- 🌟 Add ts type file of `FormModel` [#1996](https://github.com/vueComponent/ant-design-vue/pull/1966)
- 🌟 Add `modal` destroyAll type declaration [#1993](https://github.com/vueComponent/ant-design-vue/pull/1963)

## 1.5.0

`2020-03-29`
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@

---

## 1.5.1

`2020-04-02`

- 🐞 修复 `PageHeader` 不能隐藏 backIcon 问题 [#1987](https://github.com/vueComponent/ant-design-vue/pull/1987)
- 🐞 修复 `Pagination` 的 total 变化时,不更新问题 [#1989](https://github.com/vueComponent/ant-design-vue/pull/1989)
- 🐞 修复 `TreeSelect` 输入中文时 placeholder 不消失问题 [#1994](https://github.com/vueComponent/ant-design-vue/pull/1994)
- 🐞 修复 `Table` customRender 不能自定义 class style 问题 [#2004](https://github.com/vueComponent/ant-design-vue/pull/2004)
- 🐞 修复 `Form` 使用 Form.create 时,丢失插槽内容问题 [#1998](https://github.com/vueComponent/ant-design-vue/pull/1998)
- 🐞 修复 `Textarea` 滚动条闪动问题 [#1964](https://github.com/vueComponent/ant-design-vue/pull/1964)
- 🌟 添加 `FormModel` 的 ts 类型文件 [#1996](https://github.com/vueComponent/ant-design-vue/pull/1966)
- 🌟 添加 `Modal` 的 destroyAll 类型声明 [#1993](https://github.com/vueComponent/ant-design-vue/pull/1963)

## 1.5.0

`2020-03-29`
Expand Down
32 changes: 16 additions & 16 deletions components/table/__tests__/__snapshots__/demo.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -229,34 +229,34 @@ exports[`renders ./antdv-demo/docs/table/demo/colspan-rowspan.md correctly 1`] =
<tbody class="ant-table-tbody">
<tr class="ant-table-row ant-table-row-level-0" data-row-key="1">
<td class=""><a href="javascript:;">John Brown</a></td>
<td class="">32</td>
<td class="">0571-22098909</td>
<td class="">18889898989</td>
<td class="">New York No. 1 Lake Park</td>
<td>32</td>
<td>0571-22098909</td>
<td>18889898989</td>
<td>New York No. 1 Lake Park</td>
</tr>
<tr class="ant-table-row ant-table-row-level-0" data-row-key="2">
<td class=""><a href="javascript:;">Jim Green</a></td>
<td class="">42</td>
<td class="">0571-22098333</td>
<td class="">18889898888</td>
<td class="">London No. 1 Lake Park</td>
<td>42</td>
<td>0571-22098333</td>
<td>18889898888</td>
<td>London No. 1 Lake Park</td>
</tr>
<tr class="ant-table-row ant-table-row-level-0" data-row-key="3">
<td class=""><a href="javascript:;">Joe Black</a></td>
<td class="">32</td>
<td rowspan="2" class="">0575-22098909</td>
<td class="">18900010002</td>
<td class="">Sidney No. 1 Lake Park</td>
<td>32</td>
<td rowspan="2">0575-22098909</td>
<td>18900010002</td>
<td>Sidney No. 1 Lake Park</td>
</tr>
<tr class="ant-table-row ant-table-row-level-0" data-row-key="4">
<td class=""><a href="javascript:;">Jim Red</a></td>
<td class="">18</td>
<td>18</td>
<!---->
<td class="">18900010002</td>
<td class="">London No. 2 Lake Park</td>
<td>18900010002</td>
<td>London No. 2 Lake Park</td>
</tr>
<tr class="ant-table-row ant-table-row-level-0" data-row-key="5">
<td colspan="5" class=""><a href="javascript:;">Jake White</a></td>
<td colspan="5"><a href="javascript:;">Jake White</a></td>
<!---->
<!---->
<!---->
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.5.0",
"version": "1.5.1",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [
Expand Down

0 comments on commit 4314d97

Please sign in to comment.