Skip to content

Commit 41cfab4

Browse files
committed
4.0.1
1 parent 0b06ece commit 41cfab4

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### v4.0.1 (11 October 2019)
2+
3+
- [UPGRADE] Minor and patch dependency upgrades.
4+
- [BUGFIX] revert `dom-helpers` to `v3`. (#65,#66)
5+
16
### v4.0.0 (17 September 2019)
27

38
- [BREAKING] Rename to `UNSAFE_componentWillReceiveProps`; requires `react@>=16.3.0`.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-css-transition-replace",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"private": true,
55
"authors": "Marnus Weststrate <[email protected]>",
66
"license": "MIT",

packages/demo/src/Demo.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ class Demo extends React.Component {
2828
<Navbar>
2929
<Navbar.Brand>ReactCSSTransitionReplace</Navbar.Brand>
3030
<Nav pullRight>
31-
<NavItem href="https://github.com/marnusw/react-css-transition-replace" target="_blank">
31+
<NavItem
32+
href="https://github.com/marnusw/react-css-transition-replace"
33+
target="_blank"
34+
rel="noopener noreferrer"
35+
>
3236
GitHub
3337
</NavItem>
3438
</Nav>
@@ -104,7 +108,11 @@ class Demo extends React.Component {
104108
<h3 id="carousel-swap">Carousel transition</h3>
105109
<p>
106110
The slide animation is realised with a 2D CSS <code>transform</code>. View the{' '}
107-
<a href="https://github.com/marnusw/react-css-transition-replace/blob/master/packages/demo/src/transitions.css" target="_blank">
111+
<a
112+
href="https://github.com/marnusw/react-css-transition-replace/blob/master/packages/demo/src/transitions.css"
113+
target="_blank"
114+
rel="noopener noreferrer"
115+
>
108116
CSS source
109117
</a>
110118
. To ensure the entering/leaving images are properly hidden the carousel width can be
@@ -134,7 +142,11 @@ class Demo extends React.Component {
134142
with no children) which will animate the <code>height</code> going to zero along with
135143
the <code>leave</code> transition. A single child can subsequently be added again,
136144
triggering the inverse animation. View the{' '}
137-
<a href="https://github.com/marnusw/react-css-transition-replace/blob/master/packages/demo/src/transitions.css" target="_blank">
145+
<a
146+
href="https://github.com/marnusw/react-css-transition-replace/blob/master/packages/demo/src/transitions.css"
147+
target="_blank"
148+
rel="noopener noreferrer"
149+
>
138150
CSS source
139151
</a>{' '}
140152
of the `roll-up` transition.

packages/react-css-transition-replace/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-css-transition-replace",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "A React component to animate replacing one element with another.",
55
"main": "lib/ReactCSSTransitionReplace.js",
66
"module": "es/ReactCSSTransitionReplace.js",

0 commit comments

Comments
 (0)