Skip to content

Releases: jasonkuhrt/react-popover

v0.4.4

07 Jan 22:23
Compare
Choose a tag to compare

Features:

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

11 Dec 20:49
Compare
Choose a tag to compare

Fixes:

  • Fixed an error if mounted but never opened before unmount. #55.

v0.4.2

11 Dec 20:23
Compare
Choose a tag to compare

Fixes:

  • Fixed critical regression in that the main export API accidentally changed. #54

v0.4.1

10 Dec 18:09
Compare
Choose a tag to compare

Fixes:

  • A significant memory leak. #41 #42
  • Fix access to a deprecated (0.14) React function

Misc:

  • Refreshed demo
  • Two new demos

v0.4.0

16 Nov 15:17
Compare
Choose a tag to compare

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

09 Sep 14:36
Compare
Choose a tag to compare

Fixes:

Improvements:

  • Fixed webpack warnings being caused by react-draggable. Reported by @juliankrispel
  • Updated all dependencies

v0.3.4

05 Aug 01:50
Compare
Choose a tag to compare

Fixes:

0.3.3

21 Jul 02:22
Compare
Choose a tag to compare

Fixes:

  • Fixed a null error when the popover isOpen 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 or preferPlace props. d3e4ebd

0.3.2

19 Jun 17:46
Compare
Choose a tag to compare

Fixes:

  • Bug in onOuterAction that prevented Popover from working in FireFox (surprised it worked in any browser based on the bug) #26
  • Cross-browser CSS support #26 #9

0.2.0

11 May 15:00
Compare
Choose a tag to compare
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 want outerAction to semantically be in terms of target and popover. A conventional mixin would not know to tap into the layer system which is where Popover is rendered.