Skip to content

Releases: enszrlu/NextStep

v.2.0.0-beta.6

22 Dec 10:44
Compare
Choose a tag to compare
v.2.0.0-beta.6 Pre-release
Pre-release

What's Changed

  • NextStep now supports other react frameworks. nextstepjs/adapters are introduced and router logic abstracted to enable usage on other frameworks.
  • Fix React Router Framework Support by @0ctan33 in #14

New Contributors

Full Changelog: v.1.3.0...v.2.0.0-beta.6

v.1.3.0

19 Dec 17:38
b5bb974
Compare
Choose a tag to compare

What's Changed

Full Changelog: v.1.2.2...v.1.3.0

v.1.2.2

30 Oct 17:12
Compare
Choose a tag to compare

Minor readme update.

Full Changelog: v.1.2.1...v.1.2.2

v.1.2.1 - Support non-tailwindcss projects

24 Oct 15:10
Compare
Choose a tag to compare

What's Changed

  • 20240924 remove tailwind css dependency by @enszrlu in #7
  • Remove tailwindcss
  • add popstate to update selector area automatically when size changes
  • fix issue with bottom overlay not getting proper height when viewport switch to scrollable
  • Fix minor bugs

Full Changelog: v.1.1.0...v.1.2.1

v.1.2.0-beta.3

11 Oct 15:36
Compare
Choose a tag to compare
v.1.2.0-beta.3 Pre-release
Pre-release

Full Changelog: v.1.2.0-beta.2...v.1.2.0-beta.3

  • Add listener for popstate to close NextStep when browser next and previous buttons are clicked
  • Observe selector for resize and update pointer on resize

v.1.2.0-beta.2

10 Oct 18:39
Compare
Choose a tag to compare
v.1.2.0-beta.2 Pre-release
Pre-release

v.1.2.0-beta.1

10 Oct 17:29
Compare
Choose a tag to compare
v.1.2.0-beta.1 Pre-release
Pre-release

What's Changed
20240924 remove tailwind css dependency by @enszrlu in #7

Full Changelog: v.1.2.0-beta.0...v.1.2.0-beta.1

v.1.1.0 - Support tours in scrollable areas

05 Oct 11:14
Compare
Choose a tag to compare

NextStepViewport and viewportID are now available!

When a selector is in a scrollable area, it is best to wrap the content of the scrollable area with NextStepViewport. This component takes children and an id as prop. By providing the viewportID to the step, NextStep will target this element within the viewport. This ensures that the step is anchored to the element even if the container is scrollable.

See demo here

<div className="relative overflow-auto h-64">
  <NextStepViewport id="scrollable-viewport">
    {children}
  </NextStepViewport>
</div>

v.1.2.0-beta.0

05 Oct 11:24
5495514
Compare
Choose a tag to compare
v.1.2.0-beta.0 Pre-release
Pre-release

What's Changed

  • 20240924 remove tailwind css dependency by @enszrlu in #7

Full Changelog: v.1.1.0...v.1.2.0-beta.0

v.1.1.0-beta.1

24 Sep 19:13
b815c03
Compare
Choose a tag to compare
v.1.1.0-beta.1 Pre-release
Pre-release

What's Changed

  • 20240918 support in element tours by @enszrlu in #4
  • Now viewportID and NextStepViewport are available. This adds the support for anchoring to elements inside scroll-areas.
  • Removed radix portal dependency.

See Demo and Docs