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
f60fe752
Commit
f60fe752
authored
Feb 28, 2017
by
杨奕
Committed by
baiyaaaaa
Feb 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changelog: update for 1.2.2 (#3141)
parent
705325c7
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
7 deletions
+31
-7
CHANGELOG.en-US.md
CHANGELOG.en-US.md
+10
-0
CHANGELOG.zh-CN.md
CHANGELOG.zh-CN.md
+9
-0
build/deploy-ci.sh
build/deploy-ci.sh
+1
-1
examples/docs/en-US/tree.md
examples/docs/en-US/tree.md
+2
-2
examples/docs/zh-CN/color-picker.md
examples/docs/zh-CN/color-picker.md
+6
-1
examples/docs/zh-CN/custom-theme.md
examples/docs/zh-CN/custom-theme.md
+1
-1
examples/docs/zh-CN/tree.md
examples/docs/zh-CN/tree.md
+2
-2
No files found.
CHANGELOG.en-US.md
View file @
f60fe752
## Changelog
## Changelog
### 1.2.2
*2017-02-28*
-
Fixed compatibility issues with Vue 2.2, #3002 #3067 #3097
-
Fixed Cascader's dropdown hiding behind Dialog when nested in a Dialog, #3035
-
Fixed incorrect parameter of
`change`
event of Cascader, #3014
-
Add
`change`
event for ColorPicker, #3049 (by @nicoeg)
-
Fixed
`setCheckedKeys`
method of Tree not working on non-leaf nodes, #2967 (by @rainyLeo)
### 1.2.1
### 1.2.1
*2017-02-23*
*2017-02-23*
...
...
CHANGELOG.zh-CN.md
View file @
f60fe752
## 更新日志
## 更新日志
### 1.2.2
*2017-02-28*
-
修复若干组件与 Vue 2.2 不兼容的问题,#3002 #3067 #3097
-
修复嵌套在 Dialog 内的 Cascader 下拉框有时出现在 Dialog 之后的问题,#3035
-
修复 Cascader 的
`change`
事件参数在某些情况下不正确的问题,#3014
-
新增 ColorPicker 的
`change`
事件,#3049(by @nicoeg)
-
修复 Tree 的
`setCheckedKeys`
方法对非叶子节点无效的问题,#2967(by @rainyLeo)
### 1.2.1
### 1.2.1
*2017-02-23*
*2017-02-23*
...
...
build/deploy-ci.sh
View file @
f60fe752
...
@@ -42,7 +42,7 @@ if [ "$TRAVIS_TAG" ]; then
...
@@ -42,7 +42,7 @@ if [ "$TRAVIS_TAG" ]; then
export
SUB_FOLDER
=
$(
echo
"
$TRAVIS_TAG
"
|
grep
-o
-E
"
\d
+
\.\d
+"
)
export
SUB_FOLDER
=
$(
echo
"
$TRAVIS_TAG
"
|
grep
-o
-E
"
\d
+
\.\d
+"
)
echo
$SUB_FOLDER
echo
$SUB_FOLDER
SUB_FOLDER
=
'1.
1
'
SUB_FOLDER
=
'1.
2
'
mkdir
$SUB_FOLDER
mkdir
$SUB_FOLDER
rm
-rf
*
.js
*
.css
*
.map static
rm
-rf
*
.js
*
.css
*
.map static
rm
-rf
$SUB_FOLDER
/
**
rm
-rf
$SUB_FOLDER
/
**
...
...
examples/docs/en-US/tree.md
View file @
f60fe752
...
@@ -153,7 +153,7 @@
...
@@ -153,7 +153,7 @@
]);
]);
},
},
setCheckedKeys() {
setCheckedKeys() {
this.$refs.tree.setCheckedKeys([
8
]);
this.$refs.tree.setCheckedKeys([
3
]);
},
},
resetChecked() {
resetChecked() {
this.$refs.tree.setCheckedKeys([]);
this.$refs.tree.setCheckedKeys([]);
...
@@ -446,7 +446,7 @@ Tree nodes can be initially expanded or checked
...
@@ -446,7 +446,7 @@ Tree nodes can be initially expanded or checked
}]);
}]);
},
},
setCheckedKeys
()
{
setCheckedKeys
()
{
this
.
$refs
.
tree
.
setCheckedKeys
([
8
]);
this
.
$refs
.
tree
.
setCheckedKeys
([
3
]);
},
},
resetChecked
()
{
resetChecked
()
{
this
.
$refs
.
tree
.
setCheckedKeys
([]);
this
.
$refs
.
tree
.
setCheckedKeys
([]);
...
...
examples/docs/zh-CN/color-picker.md
View file @
f60fe752
...
@@ -88,4 +88,9 @@
...
@@ -88,4 +88,9 @@
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---------- |-------- |---------- |------------- |-------- |
|---------- |-------- |---------- |------------- |-------- |
| show-alpha | 是否支持透明度选择 | boolean | — | false |
| show-alpha | 是否支持透明度选择 | boolean | — | false |
| color-format | 写入 v-model 的颜色的格式 | string | hsl / hsv / hex / rgb | hex(show-alpha 为 false)/ rgb(show-alpha 为 true) |
| color-format | 写入 v-model 的颜色的格式 | string | hsl / hsv / hex / rgb | hex(show-alpha 为 false)/ rgb(show-alpha 为 true) |
\ No newline at end of file
### Events
| 事件名称 | 说明 | 回调参数 |
|---------- |-------- |---------- |
| change | 当绑定值变化时触发 | 当前值 |
\ No newline at end of file
examples/docs/zh-CN/custom-theme.md
View file @
f60fe752
...
@@ -95,4 +95,4 @@ Vue.use(ElementUI)
...
@@ -95,4 +95,4 @@ Vue.use(ElementUI)
}
}
```
```
如果不清楚
`babel-plugin-component`
是什么,请阅读
<a
href=
"./#/zh-CN/component/quickstart"
>
快
读
上手
</a>
一节。更多
`element-theme`
用法请参考
[
项目仓库
](
https://github.com/ElementUI/element-theme
)
。
如果不清楚
`babel-plugin-component`
是什么,请阅读
<a
href=
"./#/zh-CN/component/quickstart"
>
快
速
上手
</a>
一节。更多
`element-theme`
用法请参考
[
项目仓库
](
https://github.com/ElementUI/element-theme
)
。
examples/docs/zh-CN/tree.md
View file @
f60fe752
...
@@ -175,7 +175,7 @@
...
@@ -175,7 +175,7 @@
]);
]);
},
},
setCheckedKeys() {
setCheckedKeys() {
this.$refs.tree.setCheckedKeys([
8
]);
this.$refs.tree.setCheckedKeys([
3
]);
},
},
resetChecked() {
resetChecked() {
this.$refs.tree.setCheckedKeys([]);
this.$refs.tree.setCheckedKeys([]);
...
@@ -468,7 +468,7 @@
...
@@ -468,7 +468,7 @@
}]);
}]);
},
},
setCheckedKeys
()
{
setCheckedKeys
()
{
this
.
$refs
.
tree
.
setCheckedKeys
([
8
]);
this
.
$refs
.
tree
.
setCheckedKeys
([
3
]);
},
},
resetChecked
()
{
resetChecked
()
{
this
.
$refs
.
tree
.
setCheckedKeys
([]);
this
.
$refs
.
tree
.
setCheckedKeys
([]);
...
...
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