Skip to content

Commit 8e9194f

Browse files
committed
update react-flip-toolkit to 7.0.13
1 parent fc44dfa commit 8e9194f

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,5 @@ in both `flip-toolkit` (first), then updating the version of flip-toolkit` in `r
1818

1919
### Real release
2020

21-
When making an actual release, provide an associated commit message to explain what the release does:
22-
23-
`npm version patch -m "Upgrade to %s for reasons"`
24-
21+
1. Release `flip-toolkit`, wait a bit (30mins+) and ensure it shows up on npm, unpkg, maybe even https://bundlephobia.com/result?p=flip-toolkit@7.0.13 to make sure nothing unexpected changed with the size, and is working on this codesandbox: https://codesandbox.io/s/5v1k1nwz8l?file=/package.json.
22+
2. Once everything looks good, release `react-flip-toolkit` after upgrading package.json to the new version of `flip-toolkit`.

packages/react-flip-toolkit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ The parent wrapper component that contains all the elements to be animated. You'
294294
| ----------------------- | :--------: | :------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
295295
| flipKey **(required)** | - | `string`, `number`, `bool` | Changing this tells `react-flip-toolkit` to transition child elements wrapped in `Flipped` components. |
296296
| children **(required)** | - | `node` | One or more element children |
297-
| spring | `noWobble` | `string` or `object` | Provide a string referencing one of the spring presets — `noWobble` (default), `veryGentle`, `gentle`, `wobbly`, or `stiff`, OR provide an object with stiffness and damping parameters. [Explore the spring setting options here.](https://codepen.io/aholachek/full/bKmZbV/) The prop provided here will be the spring default that can be overrided on a per-element basis on the `Flipped` component. |
297+
| spring | `noWobble` | `string` or `object` | Provide a string referencing one of the spring presets — `noWobble` (default), `veryGentle`, `gentle`, `wobbly`, or `stiff`, OR provide an object with stiffness and damping parameters. [Explore the spring setting options here.](https://codesandbox.io/s/react-flip-toolkit-spring-settings-explorer-vjrsh). The prop provided here will be the spring default that can be overrided on a per-element basis on the `Flipped` component. |
298298
| applyTransformOrigin | `true` | `bool` | Whether or not `react-flip-toolkit` should apply a transform-origin of "0 0" to animating children (this is generally, but not always, desirable for FLIP animations) |
299299
| element | `div` | `string` | If you'd like the wrapper element created by the `Flipped` container to be something other than a `div`, you can specify that here. |
300300
| className | - | `string` | A class applied to the wrapper element, helpful for styling. |

packages/react-flip-toolkit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-flip-toolkit",
3-
"version": "7.0.12",
3+
"version": "7.0.13",
44
"description": "Configurable FLIP animation helpers for React",
55
"license": "MIT",
66
"source": "src/index.ts",
@@ -47,7 +47,7 @@
4747
"prepublish": "npm run build"
4848
},
4949
"dependencies": {
50-
"flip-toolkit": "7.0.12-0",
50+
"flip-toolkit": "7.0.13",
5151
"prop-types": "^15.5.7"
5252
},
5353
"peerDependencies": {

0 commit comments

Comments
 (0)