Skip to content

Commit

Permalink
Bump 3.6.4 and fix some lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
愚指导 authored Jun 23, 2018
1 parent 653ec40 commit d11d44e
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ timeline: true

---

## 3.6.4

`2018-06-23`

- 🐞 Fixed `Steps` theme `@process-icon-color`. [#10973](https://github.com/ant-design/ant-design/issues/10973)
- 🐞 Fixed style of RangePicker with preset ranges. [#10986](https://github.com/ant-design/ant-design/issues/10986)
- 🐞 Fixed `Dropdown` non-boolean attribute warning. [#7798](https://github.com/ant-design/ant-design/issues/7798)
- TypeScript
- 🌟 Add `Tree` prop `className` definition. [#10950](https://github.com/ant-design/ant-design/issues/10950)
- 🌟 Add `Tree` prop `selectable` definition. [3fb478e](https://github.com/ant-design/ant-design/commit/3fb478e743f3bad23dc300f501df11e5423468ba)

## 3.6.3

`2018-06-17`
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ timeline: true

---

## 3.6.4

`2018-06-23`

- 🐞 修复 `Steps` 组件的 `@process-icon-color` 样式定义。[#10973](https://github.com/ant-design/ant-design/issues/10973)
- 🐞 修复 `RangePicker` 组件使用预置范围时的样式问题。[#10986]
(https://github.com/ant-design/ant-design/issues/10986)
- 🐞 修复 `Dropdown` 组件可能报出的 `non-boolean attribute` 的警告。[#7798](https://github.com/ant-design/ant-design/issues/7798)
- TypeScript
- 🌟 给 `Tree` 组件添加 `className` 的定义。[#10950](https://github.com/ant-design/ant-design/issues/10950)
- 🌟 给 `Tree` 组件添加 `selectable` 的定义。[3fb478e](https://github.com/ant-design/ant-design/commit/3fb478e743f3bad23dc300f501df11e5423468ba)

## 3.6.3

`2018-06-17`
Expand Down
2 changes: 1 addition & 1 deletion components/tree-select/demo/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Demo extends React.Component {
value: undefined,
}
onChange = (value) => {
console.log(arguments);
console.log(value);
this.setState({ value });
}
render() {
Expand Down
2 changes: 1 addition & 1 deletion components/tree-select/demo/checkable.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Demo extends React.Component {
value: ['0-0-0'],
}
onChange = (value) => {
console.log('onChange ', value, arguments);
console.log('onChange ', value);
this.setState({ value });
}
render() {
Expand Down
2 changes: 1 addition & 1 deletion components/tree-select/demo/multiple.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Demo extends React.Component {
value: undefined,
}
onChange = (value) => {
console.log(arguments);
console.log(value);
this.setState({ value });
}
render() {
Expand Down
2 changes: 1 addition & 1 deletion components/tree-select/demo/treeData.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Demo extends React.Component {
value: undefined,
}
onChange = (value) => {
console.log(arguments);
console.log(value);
this.setState({ value });
}
render() {
Expand Down
2 changes: 1 addition & 1 deletion components/tree/demo/basic-controlled.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Demo extends React.Component {
selectedKeys: [],
}
onExpand = (expandedKeys) => {
console.log('onExpand', arguments);
console.log('onExpand', expandedKeys);
// if not set autoExpandParent to false, if children expanded, parent can not collapse.
// or, you can remove all expanded children keys.
this.setState({
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "antd",
"version": "3.6.3",
"version": "3.6.4",
"title": "Ant Design",
"description": "An enterprise-class UI design language and React-based implementation",
"homepage": "http://ant.design/",
Expand Down Expand Up @@ -91,9 +91,9 @@
"ansi-styles": "^3.2.0",
"ant-design-palettes": "^1.0.0",
"antd-theme-generator": "1.0.7",
"antd-tools": "^5.1.2",
"antd-tools": "^5.1.6",
"babel-cli": "^6.18.0",
"babel-eslint": "^8.1.1",
"babel-eslint": "8.2.3",
"babel-plugin-import": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
Expand All @@ -117,7 +117,7 @@
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.1.2",
"eslint": "^4.8.0",
"eslint-config-airbnb": "latest",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
Expand Down

0 comments on commit d11d44e

Please sign in to comment.