Releases: xcarpentier/rn-tourguide
Releases · xcarpentier/rn-tourguide
v3.3.0
v3.2.0
- 🐛 fix(dismissOnPress): not required
v3.1.2
- back to get dimension from window and not screen
v3.1.0
- init dimension in svgmask CTOR is enough
v3.0.0
v2.7.1
- 🐛 fix prevent tooltip to be displayed on stop b6a1fa5 @xcarpentier
v2.7.0
-
🐛 fix(provider): unregisterStep and reset canStart value (#18) 4e25a7c @cindmichelle
- reset canStart value
- fix setSteps to prevent race condition
-
🐛 fix(utilities): allows border radius object to rectangles (#14) cd60b55 @Gabrielfcs
- makes it possible to add a border to the rectangles of the TourGuideZoneByPosition component
-
🐛 Fixed .text of undefined (#20) 2c9d28e @ssstelsss
2.6.1
✨ introduce BorderRadiusObject
props.
v2.5.0
- ✨ feature: add prop
tooltipBottomOffset
toTourGuideZone
component.
v2.4.1
- 🎸 Add
canStart
to hook return to be able to start at mount but need to wait for everything ok.
// Can start at mount 🎉
// you need to wait until everything is registered 😁
React.useEffect(() => {
if (canStart) {
// 👈 test if you can start otherwise nothing will happen
start()
}
}, [canStart]) // 👈 don't miss it!