Changelog: update for 1.0.6 (#1657)

This commit is contained in:
杨奕 2016-12-09 17:59:51 +08:00 committed by cinwell.li
parent 42ec4567f1
commit c1a469c899
4 changed files with 33 additions and 0 deletions

View File

@ -1,5 +1,20 @@
## Changelog
### 1.0.6
*2016-12-09*
- Added `disabled` attribute for Tabs, #1620
- Added `size` attribute for DatePicker input, #1440
- Fixed `datetimerange` DatePicker's panel not showing correct date if initial value is present, #1129
- Fixed DatePicker display error when switching year, #1607
- Fixed DatePicker not triggering clickoutside when its icon is clicked, #1604
- Fixed TimePicker not refreshing value after clicking the clear button, #1583
- Fixed remote filterable Select display error when its value is an object, #1593
- Fixed Select's clear button still working bug when it's `disabled`, #1619
- Fixed Switch's background color error when its `disabled` attribute is dynamically changed, #1627
- Fixed some style bugs of Table
### 1.0.5
*2016-12-06*

View File

@ -1,5 +1,19 @@
## 更新日志
### 1.0.6
*2016-12-09*
- 新增 Tabs 组件的 `disabled` 属性,#1620
- 新增 DatePicker 的 input 支持 `size`#1440
- 修复 DatePicker 为 `datetimerange` 类型并设置初始值时,面板未显示正确日期的问题,#1129
- 修复 DatePicker 切换年份时显示异常的问题,#1607
- 修复 DatePicker 点击 icon 未触发 clickoutside 的问题,#1604
- 修复 TimePicker 点击清空按钮后再次点击不会更新初始值的问题,#1583
- 修复 Select 远程搜索且 value 为对象类型时的显示问题,#1593
- 修复 Select 为 `disabled` 时,`clearable` 仍然可以工作的问题,#1619
- 修复 自定义背景颜色的 Switch 在动态切换 `disabled` 时,背景颜色错误的问题,#1627
- 修复 Table 的一些样式问题
### 1.0.5
*2016-12-06*

View File

@ -56,6 +56,8 @@ Currently Element ships with the following languages:
<li>Russian (ru-RU)</li>
<li>Turkish (tr-TR)</li>
<li>Brazilian Portuguese (pt-br)</li>
<li>Farsi (fa)</li>
<li>Thai (th)</li>
</ul>
If your target language is not included, you are more than welcome to contribute: just add another language config [here](https://github.com/ElemeFE/element/tree/master/src/locale/lang) and create a pull request.

View File

@ -68,6 +68,8 @@ Vue.component(Select.name, Select)
<li>俄语ru-RU</li>
<li>土耳其语tr-TR</li>
<li>巴西葡萄牙语pt-br</li>
<li>波斯语fa</li>
<li>泰语th</li>
</ul>
如果你需要使用其他的语言,欢迎贡献 PR只需在 [这里](https://github.com/ElemeFE/element/tree/master/src/locale/lang) 添加一个语言配置文件即可。