Skip to content

Releases: wethegit/react-modal

v3.0.0

20 Aug 16:05
263435c
Compare
Choose a tag to compare

Major Changes

  • #79 6c0e7f9 Thanks @andrewrubin! - - Removed appendToBody prop.

    • The appendToBody prop has been removed. This prop was previously used to determine whether the modal should be appended to the body element.

    • Added renderTo prop.

      • Introduced the renderTo prop, which accepts an HTMLElement where the modal will be appended. This provides greater flexibilty, allowing users to specify any element to render the modal, including the body. This change enhances the customization options for the modal rendering.
    • Mark argument of hook as optional #62

    • Before

      <Modal appendToBody={true} />
    • After

      <Modal renderTo={modalRef} />

v2.2.2

29 Mar 00:11
fe21b6b
Compare
Choose a tag to compare

Patch Changes

v2.2.1

26 Mar 19:54
d02ec0a
Compare
Choose a tag to compare

Patch Changes

v2.2.0

29 Jan 23:55
f951271
Compare
Choose a tag to compare

Minor Changes

v2.0.2

04 Dec 17:37
66789a2
Compare
Choose a tag to compare

Patch Changes

  • #12 f603cd2 Thanks @marlonmarcello! - Fixes and issue where the modal would lock the body even though appendToBody wasn't set to true

v2.0.1

29 Nov 22:18
14ff74c
Compare
Choose a tag to compare

Patch Changes

v2.0.0

28 Nov 22:40
e5c034e
Compare
Choose a tag to compare

Major Changes

  • #7 4512c52 Thanks @marlonmarcello! - # V2

    Breaking changes

    Seriously, everything.

    Why

    The old design of the modal was good but it had an achilles heel, it used an internal context to handle the transition and syncing that with the state which caused:

    1. Actions to be tied to a context, adding custom components to close the modal for example was a bit annoying
    2. Animation and state were too tightly coupled and not exposed for further customization

    What's new

    The modal is now a controlled component, you can control the state of the modal from outside using the hook useModal which also exposes the state so you can use further customize the Modal and even the child components.

v1.0.2

20 May 00:54
Compare
Choose a tag to compare
v1.0.2

v1.0.0

19 May 23:38
a88b9dd
Compare
Choose a tag to compare
feature: vite (#5)

* migrating to vite

v0.0.1

26 Apr 19:15
Compare
Choose a tag to compare
  • Adds a previously-undefined value for the transition-timing-functions associated with the .modal--exiting CSS class.