Releases: jasongaare/react-native-walkthrough-tooltip
Version 1.1.8
Version 1.1.7
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
This version adds typing for the childContentSpacing
prop
Version 1.1.5
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
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
- 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
This release fixes some issues with typings.
See: #55
Version 1.1.1
- 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
- Removes
readyToComputeGeom
andwaitingToComputeGeom
from state, which were causing issues - Reset
adjustedContentSize
when moving from visible to hidden to correct measurement issue
Version 1.0.4
- 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 💪🏻)