You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(material/bottom-sheet): focus restoration not working inside shadow dom (#21975)
Related to #21796. The bottom sheet focus restoration works by grabbing `document.activeElement`
before the sheet is opened and restoring focus to the element on destroy. This won't work if the
element is inside the shadow DOM, because the browser will return the shadow root.
These changes add a workaround.
(cherry picked from commit 7044153)
0 commit comments