Skip to content

Commit cb62764

Browse files
committed
chore(*): Release-1.14.2
1 parent 5412428 commit cb62764

File tree

5 files changed

+34
-11
lines changed

5 files changed

+34
-11
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## [1.14.2](https://github.com/alibaba-fusion/next/compare/1.14.1...1.14.2) (2019-04-29)
4+
5+
6+
### Bug Fixes
7+
8+
* **Balloon:** autoFocus should be false when triggerType is focus ([af7cce1](https://github.com/alibaba-fusion/next/commit/af7cce1))
9+
* **DatePicker:** delete input, can`t select date ([cf9f9e4](https://github.com/alibaba-fusion/next/commit/cf9f9e4))
10+
* **Loading:** backwards compatible fullscreen ([3ff5972](https://github.com/alibaba-fusion/next/commit/3ff5972))
11+
* **Loading:** fix offset for fullscreen ([481c409](https://github.com/alibaba-fusion/next/commit/481c409))
12+
* **Overlay:** touch events to dismiss overlay ([b35a59c](https://github.com/alibaba-fusion/next/commit/b35a59c))
13+
* **Select:** issue [#550](https://github.com/alibaba-fusion/next/issues/550) add api followTrigger ([9312ea8](https://github.com/alibaba-fusion/next/commit/9312ea8))
14+
* **Step:** step keydown event bubble bug ([4a843f0](https://github.com/alibaba-fusion/next/commit/4a843f0))
15+
* **Table:** add deprecated API to make 0.x 1.x behave the same ([43f17aa](https://github.com/alibaba-fusion/next/commit/43f17aa))
16+
* **Tag:** fix state not matching props ([#614](https://github.com/alibaba-fusion/next/issues/614)) ([52d09dd](https://github.com/alibaba-fusion/next/commit/52d09dd))
17+
18+
19+
20+
321
## [1.14.1](https://github.com/alibaba-fusion/next/compare/1.14.0...1.14.1) (2019-04-24)
422

523

LATESTLOG.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Latest Log
22

3-
## [1.14.1](https://github.com/alibaba-fusion/next/compare/1.14.0...1.14.1) (2019-04-24)
3+
## [1.14.2](https://github.com/alibaba-fusion/next/compare/1.14.1...1.14.2) (2019-04-29)
44

55

66
### Bug Fixes
77

8-
* **Tab:** capsure tab shakes ([a19901f](https://github.com/alibaba-fusion/next/commit/a19901f))
9-
* **Tab:** wrong initial position due to animation ([fbd079e](https://github.com/alibaba-fusion/next/commit/fbd079e))
10-
* **Tag:** pass checked state to onChange ([57cfa20](https://github.com/alibaba-fusion/next/commit/57cfa20))
11-
* **Tree:** error when checkKey not in dataSource ([b925d76](https://github.com/alibaba-fusion/next/commit/b925d76))
8+
* **Balloon:** autoFocus should be false when triggerType is focus ([af7cce1](https://github.com/alibaba-fusion/next/commit/af7cce1))
9+
* **DatePicker:** delete input, can`t select date ([cf9f9e4](https://github.com/alibaba-fusion/next/commit/cf9f9e4))
10+
* **Loading:** backwards compatible fullscreen ([3ff5972](https://github.com/alibaba-fusion/next/commit/3ff5972))
11+
* **Loading:** fix offset for fullscreen ([481c409](https://github.com/alibaba-fusion/next/commit/481c409))
12+
* **Overlay:** touch events to dismiss overlay ([b35a59c](https://github.com/alibaba-fusion/next/commit/b35a59c))
13+
* **Select:** issue [#550](https://github.com/alibaba-fusion/next/issues/550) add api followTrigger ([9312ea8](https://github.com/alibaba-fusion/next/commit/9312ea8))
14+
* **Step:** step keydown event bubble bug ([4a843f0](https://github.com/alibaba-fusion/next/commit/4a843f0))
15+
* **Table:** add deprecated API to make 0.x 1.x behave the same ([43f17aa](https://github.com/alibaba-fusion/next/commit/43f17aa))
16+
* **Tag:** fix state not matching props ([#614](https://github.com/alibaba-fusion/next/issues/614)) ([52d09dd](https://github.com/alibaba-fusion/next/commit/52d09dd))
1217

1318

docs/overlay/demo/controlled.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ class Demo extends React.Component {
5555
</div>
5656
<br />
5757
<div>
58-
<Popup trigger={<button style={{"margin-right": "50px"}} ref={ref => {this.btn1 = ref}}>Paired Popup 1</button>}
58+
<Popup trigger={<button style={{"margin-right": "50px"}} ref={ref => {this.btn1 = ref;}}>Paired Popup 1</button>}
5959
triggerType="click"
6060
visible={this.state.groupVisible}
6161
safeNode={[() => this.btn2, () => this.overlay2]}
6262
onVisibleChange={this.onGroupVisibleChange}>
63-
<span className="overlay-demo" ref={ref => {this.overlay1 = ref}}>
63+
<span className="overlay-demo" ref={ref => {this.overlay1 = ref;}}>
6464
Hello World From Popup!
6565
</span>
6666
</Popup>
67-
<Popup trigger={<button ref={ref => {this.btn2 = ref}}>Paired Popup 2</button>}
67+
<Popup trigger={<button ref={ref => {this.btn2 = ref;}}>Paired Popup 2</button>}
6868
triggerType="click"
6969
visible={this.state.groupVisible}
7070
safeNode={[() => this.btn1, () => this.overlay1]}
7171
onVisibleChange={this.onGroupVisibleChange}>
72-
<span className="overlay-demo" ref={ref => {this.overlay2 = ref}}>
72+
<span className="overlay-demo" ref={ref => {this.overlay2 = ref;}}>
7373
Hello World From Popup!
7474
</span>
7575
</Popup>

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var next = require('./lib/index.js');
22

3-
next.version = '1.14.1';
3+
next.version = '1.14.2';
44

55
module.exports = next;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alifd/next",
3-
"version": "1.14.1",
3+
"version": "1.14.2",
44
"description": "A configurable component library for web built on React.",
55
"keywords": [
66
"fusion",

0 commit comments

Comments
 (0)