Commit cb62764 1 parent 5412428 commit cb62764 Copy full SHA for cb62764
File tree 5 files changed +34
-11
lines changed
5 files changed +34
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
21
## [ 1.14.1] ( https://github.com/alibaba-fusion/next/compare/1.14.0...1.14.1 ) (2019-04-24)
4
22
5
23
Original file line number Diff line number Diff line change 1
1
# Latest Log
2
2
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 )
4
4
5
5
6
6
### Bug Fixes
7
7
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 ) )
12
17
13
18
Original file line number Diff line number Diff line change @@ -55,21 +55,21 @@ class Demo extends React.Component {
55
55
< / div>
56
56
< br / >
57
57
< 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> }
59
59
triggerType= " click"
60
60
visible= {this .state .groupVisible }
61
61
safeNode= {[() => this .btn2 , () => this .overlay2 ]}
62
62
onVisibleChange= {this .onGroupVisibleChange }>
63
- < span className= " overlay-demo" ref= {ref => {this .overlay1 = ref}}>
63
+ < span className= " overlay-demo" ref= {ref => {this .overlay1 = ref; }}>
64
64
Hello World From Popup!
65
65
< / span>
66
66
< / 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> }
68
68
triggerType= " click"
69
69
visible= {this .state .groupVisible }
70
70
safeNode= {[() => this .btn1 , () => this .overlay1 ]}
71
71
onVisibleChange= {this .onGroupVisibleChange }>
72
- < span className= " overlay-demo" ref= {ref => {this .overlay2 = ref}}>
72
+ < span className= " overlay-demo" ref= {ref => {this .overlay2 = ref; }}>
73
73
Hello World From Popup!
74
74
< / span>
75
75
< / Popup>
Original file line number Diff line number Diff line change 1
1
var next = require ( './lib/index.js' ) ;
2
2
3
- next . version = '1.14.1 ' ;
3
+ next . version = '1.14.2 ' ;
4
4
5
5
module . exports = next ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @alifd/next" ,
3
- "version" : " 1.14.1 " ,
3
+ "version" : " 1.14.2 " ,
4
4
"description" : " A configurable component library for web built on React." ,
5
5
"keywords" : [
6
6
" fusion" ,
You can’t perform that action at this time.
0 commit comments