Socket
Socket
Sign inDemoInstall

react-transition-group

Package Overview
Dependencies
12
Maintainers
3
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345Next

4.4.5

Diff

Changelog

Source

4.4.5 (2022-08-01)

Bug Fixes

  • apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#847) (1043549)
eps1lon
published 4.4.4 •

Changelog

Source

4.4.4 (2022-07-30)

Bug Fixes

eps1lon
published 4.4.3 •

Changelog

Source

4.4.3 (2022-07-30)

Bug Fixes

  • enter animations with mountOnEnter or unmountOnExit (#749) (51bdceb)
monastic.panic
published 4.4.2 •

Changelog

Source

4.4.2 (2021-05-29)

Bug Fixes

  • nodeRef prop type for cross-realm elements (#732) (8710c01)
monastic.panic
published 4.4.1 •

Changelog

Source

4.4.1 (2020-05-06)

Bug Fixes

Features

  • add nodeRef alternative instead of internal findDOMNode (#559) (85016bf)
    • react-transition-group internally uses findDOMNode, which is deprecated and produces warnings in Strict Mode, so now you can optionally pass nodeRef to Transition and CSSTransition, it's a ref object that should point to the transitioning child:

      import React from "react"
      import { CSSTransition } from "react-transition-group"
      
      const MyComponent = () => {
        const nodeRef = React.useRef(null)
        return (
          <CSSTransition nodeRef={nodeRef} in timeout={200} classNames="fade">
            <div ref={nodeRef}>Fade</div>
          </CSSTransition>
        )
      }
      

Bug Fixes

  • set the values of constants attached to Transition to match the exported ones (#554)
monastic.panic
published 4.4.0 •

Changelog

Source

4.4.1 (2020-05-06)

Bug Fixes

Features

  • add nodeRef alternative instead of internal findDOMNode (#559) (85016bf)
    • react-transition-group internally uses findDOMNode, which is deprecated and produces warnings in Strict Mode, so now you can optionally pass nodeRef to Transition and CSSTransition, it's a ref object that should point to the transitioning child:

      import React from "react"
      import { CSSTransition } from "react-transition-group"
      
      const MyComponent = () => {
        const nodeRef = React.useRef(null)
        return (
          <CSSTransition nodeRef={nodeRef} in timeout={200} classNames="fade">
            <div ref={nodeRef}>Fade</div>
          </CSSTransition>
        )
      }
      

Bug Fixes

  • set the values of constants attached to Transition to match the exported ones (#554)
monastic.panic
published 4.3.0 •

Changelog

Source

4.3.0 (2019-09-05)

Features

monastic.panic
published 4.2.2 •

Changelog

Source

4.2.2 (2019-08-02)

Bug Fixes

  • Fix imports to play nicely with rollup (#530) (3d9003e)
monastic.panic
published 4.2.1 •

Changelog

Source

4.2.1 (2019-07-02)

Bug Fixes

  • updated SwitchTransition component to be default export and exported from index.js (#516) (cfd0070)
monastic.panic
published 4.2.0 •

Changelog

Source

4.2.0 (2019-06-28)

Features

2345Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc