Releases: enszrlu/NextStep
v.2.0.0-beta.6
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
v.1.2.2
Minor readme update.
Full Changelog: v.1.2.1...v.1.2.2
v.1.2.1 - Support non-tailwindcss projects
What's Changed
- 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
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
Full Changelog: v.1.2.0-beta.1...v.1.2.0-beta.2
v.1.2.0-beta.1
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
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.
<div className="relative overflow-auto h-64">
<NextStepViewport id="scrollable-viewport">
{children}
</NextStepViewport>
</div>
v.1.2.0-beta.0
What's Changed
Full Changelog: v.1.1.0...v.1.2.0-beta.0