Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
5bb6135f
Commit
5bb6135f
authored
Dec 29, 2017
by
Leopoldthecoder
Committed by
杨奕
Dec 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changelog: update for 2.0.10
parent
a7fa7449
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
CHANGELOG.en-US.md
CHANGELOG.en-US.md
+9
-0
CHANGELOG.es.md
CHANGELOG.es.md
+9
-0
CHANGELOG.zh-CN.md
CHANGELOG.zh-CN.md
+9
-0
packages/select/src/select.vue
packages/select/src/select.vue
+8
-2
No files found.
CHANGELOG.en-US.md
View file @
5bb6135f
## Changelog
### 2.0.10
*2017-12-29*
-
Fixed wrong max height calculation of Table when fixed column and summary row co-exist, #9026
-
Fixed uncompiled color style of empty text in Table, #9028
-
Now DatePicker only emits
`change`
event when value is truly changed, #9029 (by @remizovvv)
-
Added
`tabindex`
attribute for Input, #9041 (by @dicklwm)
### 2.0.9🎄
*2017-12-24*
...
...
CHANGELOG.es.md
View file @
5bb6135f
## Changelog
### 2.0.10
*2017-12-29*
-
Fixed wrong max height calculation of Table when fixed column and summary row co-exist, #9026
-
Fixed uncompiled color style of empty text in Table, #9028
-
Now DatePicker only emits
`change`
event when value is truly changed, #9029 (by @remizovvv)
-
Added
`tabindex`
attribute for Input, #9041 (by @dicklwm)
### 2.0.9🎄
*2017-12-24*
...
...
CHANGELOG.zh-CN.md
View file @
5bb6135f
## 更新日志
### 2.0.10
*2017-12-29*
-
修复了 Table 在固定列和合计行并存时的高度计算错误的问题,#9026
-
修复了 Table 样式 SCSS 文件错误编译的问题,#9028
-
现在 DatePicker 的
`change`
事件只会在
`value`
真正改变的时候触发,#9029(by @remizovvv)
-
新增 Input 的
`tabindex`
属性,#9041(by @dicklwm)
### 2.0.9🎄
*2017-12-24*
...
...
packages/select/src/select.vue
View file @
5bb6135f
...
...
@@ -12,7 +12,7 @@
<span
v-if=
"collapseTags && selected.length"
>
<el-tag
:closable=
"!disabled"
size=
"small
"
:size=
"collapseTagSize
"
:hit=
"selected[0].hitState"
type=
"info"
@
close=
"deleteTag($event, selected[0])"
...
...
@@ -22,7 +22,7 @@
<el-tag
v-if=
"selected.length > 1"
:closable=
"false"
size=
"small
"
:size=
"collapseTagSize
"
type=
"info"
disable-transitions
>
<span
class=
"el-select__tags-text"
>
+
{{
selected
.
length
-
1
}}
</span>
...
...
@@ -204,6 +204,12 @@
selectSize
()
{
return
this
.
size
||
this
.
_elFormItemSize
||
(
this
.
$ELEMENT
||
{}).
size
;
},
collapseTagSize
()
{
return
[
'
small
'
,
'
mini
'
].
indexOf
(
this
.
selectSize
)
>
-
1
?
'
mini
'
:
'
small
'
;
}
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment