All Versions
41
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v4.0.2 Changes
- โก๏ธ Update peer dependencies for React 17 (#127)
- ๐
Changed cursor in dialogStyle to
auto
(#124) - ๐ Improve Documentation (#104)
-
v4.0.1 Changes
- ๐ Move
componentWillMount
content toconstructor
to avoid deprecation message. - โก๏ธ Update
@babel/preset-env
tov7.15.0
to removebrowserslist
update message. - โก๏ธ Update
focus-trap-react
package tov8.1.0
.
- ๐ Move
-
v4.0.0 Changes
- โก๏ธ Update focus-trap (via focus-trap-react), which now includes better handling for nested focus traps (including nested modals).
- ๐ Fix bug causing underlay click not to exit when clicked if
scrollDisabled
is set tofalse
. - ๐ Allow
escapeExits
prop to be toggled while the component is mounted (i.e. without unmounting & remounting).
-
v3.1.0 Changes
onExit
now receives the event that triggered it as its only argument, should you need to stop the event's propagation or treat it differently.
-
v3.0.1 Changes
- ๐ Fix bug causing click on the scrollbar (visible because the modal vertically overflows the viewport) to close the modal.
-
v3.0.0 Changes
- Update focus-trap (via focus-trap-react), which includes a couple of behavior changes. Probably this should not change behavior for your use case. The key change is that focus management has been adjusted so that you can include tricky focusable elements like radio groups, iframes, and shadow DOM components within your modal โ as long as the first and last focusable elements in the modal can still be detected by Tabbable.
- An effect of this change is that positive tabindexes within the modal might no longer work as expected. You should avoid positive tabindexes.
- Update focus-trap (via focus-trap-react), which includes a couple of behavior changes. Probably this should not change behavior for your use case. The key change is that focus management has been adjusted so that you can include tricky focusable elements like radio groups, iframes, and shadow DOM components within your modal โ as long as the first and last focusable elements in the modal can still be detected by Tabbable.
-
v2.12.3 Changes
- 0๏ธโฃ Use
onMouseDown
instead ofonClick
to detect a tap on the underlay, which by default closes the modal. This fixes a bug where the modal would close if you click inside it then drag outside before releasing the mouse key.
- 0๏ธโฃ Use
-
v2.12.2 Changes
- ๐ Fix bug causing Escape to break the focus trap, without closing the modal, when you use
escapeExits={false}
.
- ๐ Fix bug causing Escape to break the focus trap, without closing the modal, when you use
-
v2.12.1 Changes
- Fix bug that was blocking changes to the
scrollDisabled
prop while the modal is open.
- Fix bug that was blocking changes to the
-
v2.12.0 Changes
- โ Add
focusTrapOptions
prop to pass options to the focus trap.
- โ Add