Releases: jasonkuhrt/react-popover
Releases · jasonkuhrt/react-popover
v0.4.4
Features:
onOuterAction
callback now receives the event object. Thanks @ChrisCinelli 5a2d25e
Changes:
- Improved layout calculation. The quadrant that fits the Popover the most is chosen even when the Popover doesn't fit at all. Thanks @ChrisCinelli. 863a551
Fixes:
- If the Popover is equal to the frame size it should still be considered a fit (currently it has to be smaller, the new semantic is smaller-or-equal). Thanks @ChrisCinelli. 863a551
v0.4.3
v0.4.2
v0.4.1
v0.4.0
Breaking Changes:
- Updated to work with
React x.14.x.x
#39. Thanks for @pasviegas for taking the first crack in #47. - No longer works with
React <= x.13.x
Misc:
- Updated css-vendor dependency (no significant changes).
v0.3.5
Fixes:
- Layout in IE11 #31 – @juliankrispel
Improvements:
- Fixed webpack warnings being caused by
react-draggable
. Reported by @juliankrispel - Updated all dependencies
v0.3.4
0.3.3
Fixes:
- Fixed a
null
error when the popoverisOpen
was set to true on initialization. #27. Thanks @enjoylife for reporting.
Improved:
- Error messages are better when an invalid layout choice is given for
place
orpreferPlace
props. d3e4ebd
0.3.2
0.2.0
Features
- Expose prop
onOuterAction
for hooking onto outer actions. Useful for e.g. automatically-close-on-outer-interaction. #22. One reason this is currently hard-coded to the component rather than a simple mixin is that we wantouterAction
to semantically be in terms oftarget
andpopover
. A conventional mixin would not know to tap into thelayer
system which is wherePopover
is rendered.