From 066b1e535da94d10773e4c5e639dac5a77389a75 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Jul 2020 10:25:18 -0700
Subject: [PATCH] Bump react-transition-group from 4.3.0 to 4.4.1 in /desktop
(#1367)
Summary:
Bumps [react-transition-group](https://github.com/reactjs/react-transition-group) from 4.3.0 to 4.4.1.
Sourced from react-transition-group's releases. react-transition-group internally uses const MyComponent = () => {
const nodeRef = React.useRef(null)
return (
<CSSTransition nodeRef={nodeRef} in timeout={200} classNames="fade">
<div ref={nodeRef}>Fade</div>
</CSSTransition>
)
}
Release notes
v4.4.1
4.4.1 (2020-05-06)
Bug Fixes
v4.4.0
4.4.0 (2020-05-05)
Features
nodeRef alternative instead of internal findDOMNode (https://github.com/facebook/flipper/issues/559) (85016bf)
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"
Transition to match the exported ones (https://github.com/facebook/flipper/issues/554)Sourced from react-transition-group's changelog.
4.4.1 (2020-05-06)
Bug Fixes
- transition SSR (https://github.com/facebook/flipper/issues/619) (2722bb6)
4.4.0 (2020-05-05)
Features
- add
nodeRefalternative instead of internalfindDOMNode(https://github.com/facebook/flipper/issues/559) (85016bf)
react-transition-group internally uses
findDOMNode, which is deprecated and produces warnings in Strict Mode, so now you can optionally passnodeReftoTransitionandCSSTransition, 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
Transitionto match the exported ones (https://github.com/facebook/flipper/issues/554)
1fd4a65 chore(release): 4.4.1 [skip ci]2722bb6 fix: transition SSR (https://github.com/facebook/flipper/issues/619)46bdb6e refactor(Transition): simplify render function (https://github.com/facebook/flipper/issues/621)6ab4473 chore: install dependencies in both dirs on CIce94128 chore: Fix ESLint errors in www on CI (https://github.com/facebook/flipper/issues/620)fbbcc1d test: enable React.StrictMode (https://github.com/facebook/flipper/issues/593)c863158 Expand notes for v4.4.0 and add missing fix80b663e Add scroll margin to account for fixed header205c5ce Update Yarn lockfile476cb63 Change lint script to run across entire project