Changelog: update for 2.0.8

pull/8506/merge
Leopoldthecoder 2017-12-12 16:45:26 +08:00 committed by 杨奕
parent d58814290e
commit 0fb05a35b3
7 changed files with 35 additions and 3 deletions

View File

@ -1,5 +1,15 @@
## Changelog ## Changelog
### 2.0.8
*2017-12-12*
- Added Spanish documentation
- Fixed `show-timeout` of Dropdown not working when trigger is click, #8734 (by @presidenten)
- Fixed Form validation timing for rules whose trigger is blur, #8776
- Fixed blur event of ranged DatePicker, #8784
- `format` of TimePicker now supports AM/PM, #8620 (by @firesh)
### 2.0.7 ### 2.0.7
*2017-11-29* *2017-11-29*

View File

@ -1,5 +1,15 @@
## Changelog ## Changelog
### 2.0.8
*2017-12-12*
- Added Spanish documentation
- Fixed `show-timeout` of Dropdown not working when trigger is click, #8734 (por @presidenten)
- Fixed Form validation timing for rules whose trigger is blur, #8776
- Fixed blur event of ranged DatePicker, #8784
- `format` of TimePicker now supports AM/PM, #8620 (por @firesh)
### 2.0.7 ### 2.0.7
*2017-11-29* *2017-11-29*
@ -14,7 +24,7 @@
- Corregido activacion para Popover cuando `trigger` es manual, #8467 - Corregido activacion para Popover cuando `trigger` es manual, #8467
- Añadidos los atributos `prefix-icon` y `suffix-icon` para Autocomplete, #8446 (por @liyanlong) - Añadidos los atributos `prefix-icon` y `suffix-icon` para Autocomplete, #8446 (por @liyanlong)
- Añadido el atributo `separator` para Cascader, #8501 - Añadido el atributo `separator` para Cascader, #8501
- Añadido atributo `clearable` para Input, #8509 (by @lbogdan) - Añadido atributo `clearable` para Input, #8509 (por @lbogdan)
- Añadido atributo `background` para Pagination, #8553 - Añadido atributo `background` para Pagination, #8553
### 2.0.5 ### 2.0.5
@ -36,7 +46,7 @@
- Arreglado el cambio de tamaño del Container cuando el ancho de la vista disminuye, #8042 - Arreglado el cambio de tamaño del Container cuando el ancho de la vista disminuye, #8042
- Arreglado Tree's `updateKeyChildren` borraba incorrectamente los nodos hijos, #8100 - Arreglado Tree's `updateKeyChildren` borraba incorrectamente los nodos hijos, #8100
- Arreglado la altura de los bordes de CheckboxBotón's cuando esta anidado en un Form, #8100 - Arreglado la altura de los bordes de CheckboxBotón's cuando esta anidado en un Form, #8100
- Arreglado error de análisis de los Menu's para los colores personalizados, #8153 (by @zhouyixiang) - Arreglado error de análisis de los Menu's para los colores personalizados, #8153 (por @zhouyixiang)
### 2.0.3 ### 2.0.3

View File

@ -1,5 +1,15 @@
## 更新日志 ## 更新日志
### 2.0.8
*2017-12-12*
- 新增西班牙语文档
- 修复 `show-timeout` 对点击触发的 Dropdown 无效的问题,#8734by @presidenten
- 修复 Form 对于 `trigger` 为 blur 的校验规则触发时机有误的问题,#8776
- 修复 DatePicker 在范围选择时 blur 事件触发时机有误的问题,#8784
- TimePicker 的 `format` 新增对 AM/PM 的支持,#8620by @firesh
### 2.0.7 ### 2.0.7
*2017-11-29* *2017-11-29*

View File

@ -208,6 +208,7 @@ Currently Element ships with the following languages:
<li>Arabic (ar)</li> <li>Arabic (ar)</li>
<li>Hebrew (he)</li> <li>Hebrew (he)</li>
<li>Lithuanian (lt)</li> <li>Lithuanian (lt)</li>
<li>Mongolian (mn)</li>
<li>Kazakh (kz)</li> <li>Kazakh (kz)</li>
<li>Hungarian (hu)</li> <li>Hungarian (hu)</li>
</ul> </ul>

View File

@ -208,6 +208,7 @@ Actualmente Element está disponible en los siguientes idiomas:
<li>Arabic (ar)</li> <li>Arabic (ar)</li>
<li>Hebrew (he)</li> <li>Hebrew (he)</li>
<li>Lithuanian (lt)</li> <li>Lithuanian (lt)</li>
<li>Mongolian (mn)</li>
<li>Kazakh (kz)</li> <li>Kazakh (kz)</li>
<li>Hungarian (hu)</li> <li>Hungarian (hu)</li>
</ul> </ul>

View File

@ -220,6 +220,7 @@ ElementLocale.i18n((key, value) => i18n.t(key, value))
<li>阿拉伯语ar</li> <li>阿拉伯语ar</li>
<li>希伯来语he</li> <li>希伯来语he</li>
<li>立陶宛语lt</li> <li>立陶宛语lt</li>
<li>蒙古语mn</li>
<li>哈萨克斯坦语kz</li> <li>哈萨克斯坦语kz</li>
<li>匈牙利语hu</li> <li>匈牙利语hu</li>
</ul> </ul>

View File

@ -251,7 +251,6 @@
} }
}, },
mounted() { mounted() {
console.log(11, this.prop);
if (this.prop) { if (this.prop) {
this.dispatch('ElForm', 'el.form.addField', [this]); this.dispatch('ElForm', 'el.form.addField', [this]);