
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
react-expand-animated
Advanced tools
The expand component that animate the height of child component when toggling
Simple expandable wrapper component with height, opacity animation.
npm i react-expand-animated
import React, { Component } from 'react';
import Expand from 'react-expand-animated';
class App extends Component {
  state = { open: false };
  toggle = () => {
    this.setState(prevState => ({ open: !prevState.open }));
  };
  render() {
    return (
      <Fragment>
        <button onClick={this.toggle}>Open</button>
        <Expand open={this.state.open}>
          <div style={{ width: '300px', height: '400px', color: 'red' }}>Hello</div>
        </Expand>
      </Fragment>
    );
  }
}
export default App;
| Props | Type | Required | Default | Description | 
|---|---|---|---|---|
| children | node | true | undefined | The expanded or collapsed content | 
| open | bool | false | false | When set to true expand the children component otherwise collapse it | 
| duration | number | false | 400 | Animation duration in ms | 
| easing | string | false | 'ease-in-out' | Css3 Animation's type | 
| className | string | false | '' | Wrapper's className | 
| tag | string | false | 'div' | Wrapper's tag | 
| transitions | arrayOf(string) | false | ['height', 'opacity'] | Transition attributes | 
| styles | arrayOf(shape({ open: object, close: object })) | false | {} | Additional inline-styles on open or close phase. For example: styles={open: { marginTop: 100 }, close: { marginTop: 0 }} | 
Dev:  npm run dev 
Build:  npm run build 
Test:  npm test 
Test Coverage:  npm run test:cov 
FAQs
The expand component that animate the height of child component when toggling
We found that react-expand-animated demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.