From 61878092c33303d4957f1c3ea493dd89ed9c232b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E5=A5=95?= Date: Thu, 29 Mar 2018 10:57:02 +0800 Subject: [PATCH] Changelog: update for 2.3.1 (#10437) --- CHANGELOG.en-US.md | 7 +++++++ CHANGELOG.es.md | 7 +++++++ CHANGELOG.zh-CN.md | 7 +++++++ examples/docs/en-US/tree.md | 4 ++-- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 081937f3c..1d5fd280a 100644 --- a/CHANGELOG.en-US.md +++ b/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* diff --git a/CHANGELOG.es.md b/CHANGELOG.es.md index 3a62b5cc8..6c1def188 100644 --- a/CHANGELOG.es.md +++ b/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* diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index c6d66a700..d96df7de6 100644 --- a/CHANGELOG.zh-CN.md +++ b/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* diff --git a/examples/docs/en-US/tree.md b/examples/docs/en-US/tree.md index ea04df33a..ab49cf3e8 100644 --- a/examples/docs/en-US/tree.md +++ b/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 |