# react-evenium-shuffle

> fork from https://github.com/FormidableLabs/react-shuffle.git 2.1.0

Latest version **0.0.6** (published 2017-08-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-evenium-shuffle
pnpm add react-evenium-shuffle
yarn add react-evenium-shuffle
bun add react-evenium-shuffle
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2017-08-01 |
| First published | 2017-08-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 251 |
| Author | Ken Wheeler |
| Maintainers | damienleroux |
| Keywords | react, animation, shuffle |

## Links

- npm: https://www.npmjs.com/package/react-evenium-shuffle
- Repository: https://github.com/FormidableLabs/react-shuffle
- Issues: https://github.com/FormidableLabs/react-shuffle/issues
- npm.io page: https://npm.io/package/react-evenium-shuffle

## Dependencies (4)

- [object-assign](https://npm.io/package/object-assign.md) ^4.0.1
- [react-tween-state](https://npm.io/package/react-tween-state.md) ^0.1.5
- [react-addons-transition-group](https://npm.io/package/react-addons-transition-group.md) ^15.0.0 || ^0.14.0
- [babel-plugin-transform-object-rest-spread](https://npm.io/package/babel-plugin-transform-object-rest-spread.md) ^6.16.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.0.6 (latest) — 2017-08-01

## README

#react-shuffle fork from https://github.com/FormidableLabs/react-shuffle.git 2.1.0

#original readme:

Animated shuffling of child components

###Install

```
npm install react-shuffle
```

###Preview

![http://i.imgur.com/B1RFfvj.gif](http://i.imgur.com/B1RFfvj.gif)

### Usage

Simply wrap child components with this component and dynamically change them to see them animate. The only real requirement is that each child has a non-index based key, for proper position identification.

### Props

| Prop | PropType | Description |
| ---- | -------- | ----------- |
| duration | React.PropTypes.number | Duration of animation |
| fade | React.PropTypes.bool | Should children fade on enter/leave |
| scale | React.PropTypes.bool | Should children scale on enter/leave |
| intial | React.PropTypes.bool | Should scale/fade occur on first load |

###Example
```javascript
'use strict';

var React = require('react');

var Shuffle = require('react-shuffle');

const App = React.createClass({
  render() {
    return (
      <Shuffle>
       {// Method to render children goes here}
      </Shuffle>
    )
  }
});

module.exports = App;

```

### Shout out

react-shuffle is heavily inspired by Ryan Florences Magic Move demo https://youtu.be/z5e7kWSHWTg

---
_Source: https://npm.io/package/react-evenium-shuffle · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
