Skip to content

Releases: xcarpentier/rn-tourguide

v3.3.0

30 Aug 09:05
Compare
Choose a tag to compare
fix lint

v3.2.0

14 Oct 13:22
Compare
Choose a tag to compare
  • 🐛 fix(dismissOnPress): not required

v3.1.2

14 Oct 07:17
Compare
Choose a tag to compare
  • back to get dimension from window and not screen

v3.1.0

13 Oct 15:20
Compare
Choose a tag to compare
  • init dimension in svgmask CTOR is enough

v3.0.0

13 Oct 12:11
Compare
Choose a tag to compare

v2.7.1

03 Nov 08:27
Compare
Choose a tag to compare

v2.7.0

03 Nov 08:24
Compare
Choose a tag to compare
  • 🐛 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

30 Oct 14:38
Compare
Choose a tag to compare

✨ introduce BorderRadiusObject props.

v2.5.0

26 Aug 15:03
Compare
Choose a tag to compare
  • ✨ feature: add prop tooltipBottomOffset to TourGuideZone component.

v2.4.1

22 Jun 19:18
Compare
Choose a tag to compare
  • 🎸 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!