Przeglądaj źródła

Changelog: update for 1.0.8

Leopoldthecoder 8 lat temu
rodzic
commit
98d3905ce9

+ 19 - 0
CHANGELOG.en-US.md

@@ -1,5 +1,24 @@
 ## Changelog
 
+### 1.0.8
+
+*2016-12-20*
+
+- Fixed nested Popup from event bubbling, #1677
+- Fixed the issue that datetimerange-typed DatePicker can not select time, #1758
+- Fixed `change` event not firing correctly of Slider, #1809
+- Fixed Loading's spinner splitting while animating in some conditions, #1786
+- Added `loading-text`, `no-data-text`, `no-match-text` properties and `visible-change` event for Select, #1849
+- Added `popper-class` property for DatePicker, Select and Tooltip, #1806
+- Added `expand-on-click-node`, `current-node-key` properties and `current-change` event for Tree, #1805 #1807
+- Added the third parameter `column` for Table's `row-click` event, #1808
+- Fixed an error when pages with Checkbox switching routes due to `computed` property being cached, #1860
+- Added the tab instance as a parameter for TabPanel's `label-content` render function, #1857
+- Added infinite submenus support for NavMenu in vertical mode, #1851
+- Updated Checkbox so that it works without a binding value, #1818
+- Added `onProgress` hook for Progress, #1782
+- Fixed Tab not updating active bar with dynamic label, #1761
+
 ### 1.0.7
 
 *2016-12-14*

+ 18 - 0
CHANGELOG.zh-CN.md

@@ -1,5 +1,23 @@
 ## 更新日志
 
+### 1.0.8
+*2016-12-20*
+
+- 修复 Popup 在叠加使用时阻止事件冒泡,#1677
+- 修复 DatePicker 类型为 datetimerange 时无法选择时间的问题,#1758
+- 修复 Slider 的 `change` 事件不能正确触发的问题,#1809
+- 修复 Loading 的 spinner 在某些情况下转动时出现碎片的问题,#1786
+- 新增 Select 的 `loading-text`、`no-data-text`、`no-match-text` 属性和 `visible-change` 事件,#1849
+- 新增 DatePicker、Select 和 Tooltip 的 `popper-class` 属性,#1806
+- 新增 Tree 的 `expand-on-click-node`、`current-node-key` 属性和 `current-change` 事件,#1805 #1807
+- 新增 Table `row-click` 事件的第三个参数 `column`,#1808
+- 修复 Checkbox 的在路由切换时因为 computed 属性被缓存导致的bug,#1860
+- 新增 TabPanel `label-content` 渲染钩子方法中增加 tab 实例的参数,#1857
+- 新增 NavMenu 组件增加无限级子菜单(vertical模式)的支持,#1851
+- 新增 Checkbox 现在支持不绑定 value 也可以正常使用,#1818
+- 新增 Progress 的 `onProgress` 钩子函数,#1782
+- 修复 Tab 组件 active bar 在动态 label 下没有更新的问题,#1761
+
 ### 1.0.7
 *2016-12-14*
 

+ 1 - 0
examples/docs/en-US/i18n.md

@@ -58,6 +58,7 @@ Currently Element ships with the following languages:
   <li>Brazilian Portuguese (pt-br)</li>
   <li>Farsi (fa)</li>
   <li>Thai (th)</li>
+  <li>Indonesian (id)</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.

+ 1 - 0
examples/docs/zh-CN/i18n.md

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