Skip to content

Releases: jasongaare/react-native-walkthrough-tooltip

Version 1.1.8

15 Jun 04:06
Compare
Choose a tag to compare

Included in this release:

  • added prop closeOnContentInteraction to allow for a user to interact with the tooltip content and not have it automatically close (#80)
  • added accessibility prop to Tooltip touchable (#84)

Version 1.1.7

06 Jan 20:39
Compare
Choose a tag to compare

This release introduces the prop topAdjustment which allows for adjusting the vertical position of the child element in the tooltip. This is useful because the measure function for Android can return an incorrect coordinate (nearly always offset by the height of the StatusBar)

See #69

Version 1.1.6

04 Dec 20:14
Compare
Choose a tag to compare

This version adds typing for the childContentSpacing prop

Version 1.1.5

31 Oct 15:08
Compare
Choose a tag to compare

In rare cases, the measure function on a React Native View will return undefined values, likely before they are actually known. This helps prevent a crash and/or incorrect childRect values by checking first that all values are defined

Version 1.1.4

31 Oct 15:09
Compare
Choose a tag to compare

On some devices, there was a continuous loop with the measuring and layout callbacks, so the tooltip bubble would flicker rapidly between two sizes. This alleviates that issue.

Version 1.1.3

10 Oct 21:04
9944994
Compare
Choose a tag to compare
  • On some devices, there was a continuous loop with the measuring and layout callbacks, so the tooltip bubble would flicker rapidly between two sizes. This version alleviates that issue.

Version 1.1.2

08 Oct 15:46
Compare
Choose a tag to compare

This release fixes some issues with typings.

See: #55

Version 1.1.1

04 Oct 20:20
d3aa899
Compare
Choose a tag to compare
  • This release helps alleviate some layout issues with tooltip placements that extended beyond the displayInsets on the right or bottom of the screen

Fixes issue: #53

Version 1.1.0

27 Sep 18:47
98a3056
Compare
Choose a tag to compare
  • Removes readyToComputeGeom and waitingToComputeGeom from state, which were causing issues
  • Reset adjustedContentSize when moving from visible to hidden to correct measurement issue

Version 1.0.4

17 Sep 21:02
572c1a2
Compare
Choose a tag to compare
  • fixes an issue where the adjustedContentSize was not allowing the content of a center placement to grow
  • (behinds the scenes details) when the original contentSize fits inside the displayInset, the adjusted size is set to -1 and then the size for that dimension is NOT applied to the content. but if the size was too large, the adjusted size IS used (i.e. the best of both worlds 💪🏻)