Skip to content

Commit

Permalink
chore(*): Release-1.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Mar 13, 2019
1 parent df64bb6 commit 4ffacdc
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 13 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

<a name="1.13.6"></a>
## [1.13.6](https://github.com/alibaba-fusion/next/compare/1.13.5...1.13.6) (2019-03-13)


### Bug Fixes

* **DatePicker:** disabledDate will auto disable month ([94276d2](https://github.com/alibaba-fusion/next/commit/94276d2))
* **Step:** labelPlacement value change dbl times ([3c7ae73](https://github.com/alibaba-fusion/next/commit/3c7ae73))
* **Tag:** close button not showing in select when text too long ([fd341f8](https://github.com/alibaba-fusion/next/commit/fd341f8))
* **Upload:** className not pass in ([cb33e75](https://github.com/alibaba-fusion/next/commit/cb33e75))
* **Upload:** drag upload no trigger onDrop ([5f58f29](https://github.com/alibaba-fusion/next/commit/5f58f29))
* **Upload:** fix setValue fail in onSuccess ([384c379](https://github.com/alibaba-fusion/next/commit/384c379))


### Features

* **ConfigProvider:** add ErrorBoundary ([ada2b5b](https://github.com/alibaba-fusion/next/commit/ada2b5b))
* **Range:** RTL feature of Range Component ([2127ee6](https://github.com/alibaba-fusion/next/commit/2127ee6))
* **Select:** can unselect all ([77077a2](https://github.com/alibaba-fusion/next/commit/77077a2))
* **Tab:** RTL feature of Tab ([142af04](https://github.com/alibaba-fusion/next/commit/142af04))


<a name="1.13.5"></a>
## [1.13.5](https://github.com/alibaba-fusion/next/compare/1.13.3...1.13.5) (2019-03-07)

Expand Down
21 changes: 12 additions & 9 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
# Latest Log
# Latest Log

## [1.13.5](https://github.com/alibaba-fusion/next/compare/1.13.3...1.13.5) (2019-03-07)
## [1.13.6](https://github.com/alibaba-fusion/next/compare/1.13.5...1.13.6) (2019-03-13)


### Bug Fixes

* **Collapse:** fix nested collapse icon ([7a6842a](https://github.com/alibaba-fusion/next/commit/7a6842a))
* **DatePicker:** date range picker select time error ([59eaa9c](https://github.com/alibaba-fusion/next/commit/59eaa9c))
* **Step:** step-item param of labelPlacement change update bug ([f0939af](https://github.com/alibaba-fusion/next/commit/f0939af))
* **Tab:** can't scroll when active item is inside view ([a8f4d18](https://github.com/alibaba-fusion/next/commit/a8f4d18))
* **Table:** extra lock columns when enough space && dataSource=[], close[#364](https://github.com/alibaba-fusion/next/issues/364) ([b9c2328](https://github.com/alibaba-fusion/next/commit/b9c2328))
* **DatePicker:** disabledDate will auto disable month ([94276d2](https://github.com/alibaba-fusion/next/commit/94276d2))
* **Step:** labelPlacement value change dbl times ([3c7ae73](https://github.com/alibaba-fusion/next/commit/3c7ae73))
* **Tag:** close button not showing in select when text too long ([fd341f8](https://github.com/alibaba-fusion/next/commit/fd341f8))
* **Upload:** className not pass in ([cb33e75](https://github.com/alibaba-fusion/next/commit/cb33e75))
* **Upload:** drag upload no trigger onDrop ([5f58f29](https://github.com/alibaba-fusion/next/commit/5f58f29))
* **Upload:** fix setValue fail in onSuccess ([384c379](https://github.com/alibaba-fusion/next/commit/384c379))


### Features

* **NumberPicker:** consider [] as [.] ([8369b4a](https://github.com/alibaba-fusion/next/commit/8369b4a))
* **Upload:** add rtl support ([5505d6d](https://github.com/alibaba-fusion/next/commit/5505d6d))
* **ConfigProvider:** add ErrorBoundary ([ada2b5b](https://github.com/alibaba-fusion/next/commit/ada2b5b))
* **Range:** RTL feature of Range Component ([2127ee6](https://github.com/alibaba-fusion/next/commit/2127ee6))
* **Select:** can unselect all ([77077a2](https://github.com/alibaba-fusion/next/commit/77077a2))
* **Tab:** RTL feature of Tab ([142af04](https://github.com/alibaba-fusion/next/commit/142af04))


4 changes: 2 additions & 2 deletions docs/config-provider/demo/error-boundary.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class App extends React.Component {
};

render() {
return <div>
return (<div>
Pass undefined to locale which will cause an error: <Button type="primary" onClick={this.onClick}>trigger error</Button>
<br/>
<br/>
Expand All @@ -72,7 +72,7 @@ export default class App extends React.Component {
}}>
<NewDemo locale={this.state.locale}/>
</ConfigProvider>
</div>
</div>);
}
}

Expand Down
1 change: 1 addition & 0 deletions docs/range/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
| pure | 是否pure render | Boolean | false |
| fixedWidth | 是否为拖动线段类型,默认slider为double, defaultValue必传且指定区间 | Boolean | false |
| tooltipVisible | tooltip是否默认展示 | Boolean | false |
| rtl | 是否已rtl模式展示 | Boolean | false |

## ARIA and KeyBoard

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.13.5';
next.version = '1.13.6';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.13.5",
"version": "1.13.6",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down

0 comments on commit 4ffacdc

Please sign in to comment.