Browse Source

Changelog: update for 2.3.1 (#10437)

杨奕 7 years ago
parent
commit
61878092c3
4 changed files with 23 additions and 2 deletions
  1. 7 0
      CHANGELOG.en-US.md
  2. 7 0
      CHANGELOG.es.md
  3. 7 0
      CHANGELOG.zh-CN.md
  4. 2 2
      examples/docs/en-US/tree.md

+ 7 - 0
CHANGELOG.en-US.md

@@ -1,5 +1,12 @@
 ## Changelog
 
+### 2.3.1
+
+*2018-03-29*
+
+- Fixed a regression that `type` of Input is not passed down to the native input element, #10415
+- Added `blur` method for Select, #10416
+
 ### 2.3.0 Diamond
 
 *2018-03-28*

+ 7 - 0
CHANGELOG.es.md

@@ -1,5 +1,12 @@
 ## Changelog
 
+### 2.3.1
+
+*2018-03-29*
+
+- Fixed a regression that `type` of Input is not passed down to the native input element, #10415
+- Added `blur` method for Select, #10416
+
 ### 2.3.0 Diamond
 
 *2018-03-28*

+ 7 - 0
CHANGELOG.zh-CN.md

@@ -1,5 +1,12 @@
 ## 更新日志
 
+### 2.3.1
+
+*2018-03-29*
+
+- 修复 Input 的 `type` 属性未传递至原生 input 元素的问题,#10415
+- 新增 Select 的 `blur` 方法,#10416
+
 ### 2.3.0 Diamond
 
 *2018-03-28*

+ 2 - 2
examples/docs/en-US/tree.md

@@ -1177,8 +1177,8 @@ You can drag and drop Tree nodes by adding a `draggable` attribute.
 | indent                | horizontal indentation of nodes in adjacent levels in pixels | number                     | —    | 16 |
 | lazy                  | whether to lazy load leaf node, used with `load` attribute  | boolean                     | —    | false |
 | draggable             | whether enable tree nodes drag and drop | boolean            | —    | false |
-| allow-drag            | this function will be executed before dragging a node. if return `false`, the node can not be drag.  | Function(node)  | —  | —  |
-| allow-drop            | this function will be executed when dragging enter a node. if return `false`, dragging node can not be drop at the node. | Function(draggingNode, dropNode)  | —    | —     |
+| allow-drag            | this function will be executed before dragging a node. If `false` is returned, the node can not be dragged | Function(node)  | —  | —  |
+| allow-drop            | this function will be executed before the dragging node is dropped. If `false` is returned, the dragging node can not be dropped at the target node | Function(draggingNode, dropNode)  | —    | —     |
 
 ### props
 | Attribute | Description                              | Type   | Accepted Values | Default |