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
4f2bc65a
Commit
4f2bc65a
authored
May 05, 2017
by
Leopoldthecoder
Committed by
杨奕
May 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changelog: update for 1.3.0
parent
3a19bdd1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
38 deletions
+35
-38
CHANGELOG.en-US.md
CHANGELOG.en-US.md
+17
-19
CHANGELOG.zh-CN.md
CHANGELOG.zh-CN.md
+17
-18
examples/components/footer.vue
examples/components/footer.vue
+1
-1
No files found.
CHANGELOG.en-US.md
View file @
4f2bc65a
## Changelog
### 1.3.0
-beta.3
### 1.3.0
Beryllium
*2017-05-03*
#### New features:
-
Added
`label`
attribute for CarouselItem, #4317 (by @paul-blundell)
-
`message`
of MessageBox now supports VNode, #4550
-
Added
`filter-placement`
attribute for TableColumn, #4491
-
Added
`visible`
attribute for Dialog, which supports the
`.sync`
modifier, #4539
-
`current-page`
of Pagination
`current-page`
now supports
`.sync`
, #4539
-
Added
`abort`
method for Upload, #4575
#### Fix:
-
Upload not displaying preview image when is
`auto-upload`
false, #4572
### 1.3.0-beta.1
*2017-04-28*
*2017-05-05*
#### New features:
-
New component: Transfer
...
...
@@ -27,14 +12,22 @@
-
Table
-
Added
`setCurrentRow`
method, #4390
-
Added summary row, with three attributes:
`show-summary`
,
`sum-text`
and
`summary-method`
, #4484
-
Dialog now has a
`before-close`
hook, #4432
-
Added
`filter-placement`
attribute for TableColumn, #4491
-
Dialog
-
Added a
`before-close`
hook, #4432
-
Added
`visible`
attribute, which supports the
`.sync`
modifier, #4539
-
Upload
-
Added
`disabled`
attribute, #4473
-
`on-change`
now also triggers when a file is added, #4447
-
Added
`abort`
method
-
Switch now supports
`on-value`
and
`off-value`
, so that you can customize its values, #4403
-
DatePicker
-
Added
`default-value`
attribute for initially displayed date in the dropdown, #4222 (by @wacky6)
-
`type`
now supports dynamic updates, #4417 (by @coffeedeveloper)
-
Added
`label`
attribute for CarouselItem, #4317 (by @paul-blundell)
-
`message`
of MessageBox now supports VNode, #4550
-
`current-page`
of Pagination
`current-page`
now supports
`.sync`
, #4539
-
Added
`label`
slot for Form, so you can customize label's content, #4634
#### Fixes:
-
Compatibility issues of Select and Table with Vue 2.3.x, #4518
...
...
@@ -42,8 +35,13 @@
-
An issue when the key of a Tree node is number 0, #4415
-
TimePicker number not align when picked, #4425 (by @pengchongfu)
-
Autocomplete frequently triggering searching method when typing Chinese, #4393 (by @qazbnm456)
-
Upload not able to select the same file multiple times, #4461
-
Upload
-
not able to select the same file multiple times, #4461
-
not displaying preview image when is
`auto-upload`
false, #4572
-
some style errors, #4643
-
Style bug of RadioGroup when nested in a FormItem, #4336
-
ColorPicker not clear the color panel when bound value is emptied, #4668 (by @pengchongfu)
-
`show-overflow-tooltip`
of Table not working in Safari, #4157 (by @renxia)
#### Breaking changes:
-
Only compatible with Vue 2.3.0+
...
...
CHANGELOG.zh-CN.md
View file @
4f2bc65a
## 更新日志
### 1.3.0-beta.3
*2017-05-03*
#### 新特性:
-
CarouselItem 新增
`label`
属性,#4317(by @paul-blundell)
-
MessageBox 的
`message`
属性增加对 VNode 的支持,#4550
-
TableColumn 新增
`filter-placement`
属性,#4491
-
Dialog 新增
`visible`
属性,且支持
`.sync`
修饰符,#4539
-
Pagination 的
`current-page`
增加对
`.sync`
的支持,#4539
-
Upload 新增
`abort`
方法,#4575
#### 修复:
-
`auto-upload`
为 false 的 Upload 不显示预览图片的问题,#4572
### 1.3.0-beta.1
*2017-04-28*
### 1.3.0 Beryllium
*2017-05-05*
#### 新特性:
-
新增 Transfer 组件
...
...
@@ -25,14 +11,22 @@
-
Table
-
新增
`setCurrentRow`
方法,#4390
-
新增表尾合计行的功能,提供
`show-summary`
、
`sum-text`
和
`summary-method`
,#4484
-
Dialog 新增
`before-close`
属性,#4432
-
TableColumn 新增
`filter-placement`
属性,#4491
-
Dialog
-
新增
`before-close`
属性,#4432
-
新增
`visible`
属性,且支持
`.sync`
修饰符,#4539
-
Upload
-
新增
`disabled`
属性,#4473
-
`on-change`
事件现在也会在添加文件后触发,#4447
-
新增
`abort`
方法,#4575
-
Switch 新增
`on-value`
和
`off-value`
属性,支持自定义两种状态的值,#4403
-
DatePicker
-
新增
`default-value`
属性,用于设定下拉框初次弹出时显示的日期,#4222(by @wacky6)
-
支持动态改变
`type`
,#4417(by @coffeedeveloper)
-
CarouselItem 新增
`label`
属性,#4317(by @paul-blundell)
-
MessageBox 的
`message`
属性增加对 VNode 的支持,#4550
-
Pagination 的
`current-page`
增加对
`.sync`
的支持,#4539
-
Form 新增名为 label 的 slot,用于自定义标签文本的内容,#4634
#### 修复:
-
Select 和 Table 的某些功能与 Vue 2.3.x 不兼容的问题,#4518
...
...
@@ -40,8 +34,13 @@
-
Tree 的树节点 ID 为数字 0 时的一些问题,#4415
-
TimePicker 在完成选择后数字不居中显示的问题,#4425(by @pengchongfu)
-
Autocomplete 在输入中文时频繁触发搜索方法的问题,#4393(by @qazbnm456)
-
Upload 不能选择同一个文件的问题,#4461
-
Upload
-
不能选择同一个文件的问题,#4461
-
`auto-upload`
为 false 时不显示预览图片的问题,#4572
-
一些样式问题,#4643
-
嵌套在 FormItem 中的按钮样式的 RadioGroup 的样式问题,#4336
-
ColorPicker 修复将绑定值赋值为空不会清空颜色面板的问题,#4668(by @pengchongfu)
-
Table 修复在 Safari 下
`show-overflow-tooltip`
无效的问题,#4157(by @renxia)
#### 非兼容性更新:
-
最低兼容 Vue 2.3.0
...
...
examples/components/footer.vue
View file @
4f2bc65a
...
...
@@ -2,7 +2,7 @@
<footer
class=
"footer"
>
<div
class=
"container"
>
<div
class=
"footer-main"
>
<p
class=
"footer-main-title"
>
Element
{{
version
}}
Lith
ium
</p>
<p
class=
"footer-main-title"
>
Element
{{
version
}}
Beryll
ium
</p>
<a
href=
"https://github.com/ElemeFE/element/issues"
class=
"footer-main-link"
target=
"_blank"
>
{{
langConfig
.
feedback
}}
</a>
<a
:href=
"`https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.$
{ lang }.md`" class="footer-main-link" target="_blank">
{{
langConfig
.
contribution
}}
</a>
</div>
...
...
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