Changelog: update for 1.1.3

pull/2303/head
Leopoldthecoder 2017-01-09 16:14:07 +08:00 committed by cinwell.li
parent d3f62b7974
commit b7c2fc4b25
5 changed files with 30 additions and 1 deletions

View File

@ -1,5 +1,19 @@
## Changelog ## Changelog
### 1.1.3
*2017-01-09*
- Fixed DatePicker not firing change event when cleared for the first time upon page load, #2167
- Fixed DatePicker year calculating error when choosing the next year, #2152
- Added `default-sort-prop` and `default-sort-order` attributes for Table, #2182 (by @njleonzhang)
- Fixed filterable Select filtering other options with initial value, #2196
- Added custom i18n processing, making Element compatible with i18n plugins other than `vue-i18n`, #2129
- Added `resize` attribute for Input, #2263 (by @Kingwl)
- Fixed Autocomplete not hiding dropdown when blurred, #2247
- Fixed style issues with nested Tabs, #2212 (by @Kingwl)
- Fixed Tabs' tab bar locating error when non-first item is initially activated, #2192
### 1.1.2 ### 1.1.2
*2016-12-30* *2016-12-30*

View File

@ -1,5 +1,18 @@
## 更新日志 ## 更新日志
### 1.1.3
*2017-01-09*
- 修复 DatePicker 页面加载后首次清空不会触发 `change` 事件,#2167
- 修复 DatePicker 选择下一年时,年份计算错误,#2152
- 新增 Table 的 `default-sort-prop``default-sort-order` 属性,#2182by @njleonzhang
- 修复有默认值的可搜索 Select 其他数据被过滤的问题,#2196
- 新增自定义 i18n 处理方法,方便和除了 `vue-i18n` 之外的插件使用,#2129
- 新增 Input `resize` 属性,#2263by @Kingwl
- 修复 Autocomplete 在 blur 事件触发时没有隐藏下拉列表的问题,#2247
- 修复 Tabs 嵌套使用时的样式问题,#2212by @Kingwl
- 修复 Tabs 默认激活非第一项时 tabBar 的显示位置不正确的问题,#2192
### 1.1.2 ### 1.1.2
*2016-12-30* *2016-12-30*

View File

@ -94,6 +94,7 @@ Currently Element ships with the following languages:
<li>Farsi (fa)</li> <li>Farsi (fa)</li>
<li>Thai (th)</li> <li>Thai (th)</li>
<li>Indonesian (id)</li> <li>Indonesian (id)</li>
<li>Bulgarian (bg)</li>
</ul> </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. 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

@ -106,6 +106,7 @@ Vue.use(Element, {
<li>波斯语fa</li> <li>波斯语fa</li>
<li>泰语th</li> <li>泰语th</li>
<li>印尼语id</li> <li>印尼语id</li>
<li>保加利亚语bg</li>
</ul> </ul>
如果你需要使用其他的语言,欢迎贡献 PR只需在 [这里](https://github.com/ElemeFE/element/tree/master/src/locale/lang) 添加一个语言配置文件即可。 如果你需要使用其他的语言,欢迎贡献 PR只需在 [这里](https://github.com/ElemeFE/element/tree/master/src/locale/lang) 添加一个语言配置文件即可。

View File

@ -1,4 +1,4 @@
{ {
"1.0.9": "1.0", "1.0.9": "1.0",
"1.1.2": "1.1" "1.1.3": "1.1"
} }