Skip to content

Commit

Permalink
Enable NoScroll feature for the initial useFocusTrap hook (#356)
Browse files Browse the repository at this point in the history
* enable NoScroll feature for the initial useFocusTrap hook

Once you are using Tab and Shift+Tab it does the scrolling.

Fixes: #345

* update changelog
  • Loading branch information
RobinMalfait authored Apr 15, 2021
1 parent ff2c512 commit 19590b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased - React]

- Nothing yet!
### Fixes

- Fixed transitions being cancelled because of focus auto scroll ([#356](https://github.com/tailwindlabs/headlessui/pull/356))

## [Unreleased - Vue]

Expand Down
2 changes: 1 addition & 1 deletion packages/@headlessui-react/src/hooks/use-focus-trap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function useFocusTrap(
} else {
let couldFocus = false
for (let container of containers.current) {
let result = focusIn(container, Focus.First)
let result = focusIn(container, Focus.First | Focus.NoScroll)
if (result === FocusResult.Success) {
couldFocus = true
break
Expand Down
2 changes: 1 addition & 1 deletion packages/@headlessui-vue/src/hooks/use-focus-trap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function useFocusTrap(
} else {
let couldFocus = false
for (let container of containers.value) {
let result = focusIn(container, Focus.First)
let result = focusIn(container, Focus.First | Focus.NoScroll)
if (result === FocusResult.Success) {
couldFocus = true
break
Expand Down

0 comments on commit 19590b0

Please sign in to comment.