mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 04:08:10 +08:00
Changelog: update for 1.3.6
This commit is contained in:
parent
433a66cc40
commit
5606340a56
@ -1,5 +1,15 @@
|
||||
## Changelog
|
||||
|
||||
### 1.3.6
|
||||
|
||||
*2017-06-09*
|
||||
|
||||
- Fixed inconsistency of ColorPicker's default value and panel value, #5183 (by @Kingwl)
|
||||
- Fixed ColorPicker not able to change hue in the panel when its default value is white, #5184 (by @Kingwl)
|
||||
- Fixed Select's dropdown taking multiple clicks to expand when nested in a Dialog after scrolling, #5226
|
||||
- Added `props` property for Autocomplete, #5282
|
||||
- Fixed dropdown of DatePicker not hiding when Tab key is pressed after manual input, #5149 (by @ChuckFields)
|
||||
|
||||
### 1.3.5
|
||||
|
||||
*2017-06-03*
|
||||
|
@ -1,5 +1,14 @@
|
||||
## 更新日志
|
||||
|
||||
### 1.3.6
|
||||
*2017-06-09*
|
||||
|
||||
- 修复 ColorPicker 的默认值有时与面板中的值不一致的问题,#5183(by @Kingwl)
|
||||
- 修复默认值为白色的 ColorPicker 无法通过面板改变 hue 的问题,#5184(by @Kingwl)
|
||||
- 修复 Dialog 在滚动后,其嵌套的 Select 需多次点击才能呼出的问题,#5226
|
||||
- 新增 Autocomplete 的 `props` 属性,#5282
|
||||
- 修复 DatePicker 在手动输入值后按 Tab 切换焦点时下拉框不消失的问题,#5149(by @ChuckFields)
|
||||
|
||||
### 1.3.5
|
||||
*2017-06-03*
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
||||
"unpkg": "lib/index.js",
|
||||
"style": "lib/theme-default/index.css",
|
||||
"dependencies": {
|
||||
"async-validator": "^1.6.9",
|
||||
"async-validator": "1.6.9",
|
||||
"babel-helper-vue-jsx-merge-props": "^2.0.0",
|
||||
"deepmerge": "^1.2.0",
|
||||
"throttle-debounce": "^1.0.1"
|
||||
|
@ -208,7 +208,6 @@ export default {
|
||||
value={ this.$parent.internalCurrentPage }
|
||||
on-change={ this.handleChange }
|
||||
on-focus={ this.handleFocus }
|
||||
style={{ width: '30px' }}
|
||||
number/>
|
||||
{ this.t('el.pagination.pageClassifier') }
|
||||
</span>
|
||||
|
Loading…
Reference in New Issue
Block a user