
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
react-collapse-animated
Advanced tools
react component which animates from height zero to required height and vice versa
React component which can be used for any kind of collapsible content. It can be used for an accordion or a 'show more' section or a dropdown menu.
The height changes from zero to content height and vice versa are animated. The animation duration and type are customizable.
Example usage to build and individual Collapsible with a header -
// the open/close state of Collapse is controlled from the consumer
render() {
const { heading } = this.props;
const { isOpen } = this.state;
return (
<div role="button" className='collapsible-section'>
<button
className='collapsible-label'
onClick={this.handleClick}
aria-expanded={isOpen}
aria-controls={this.getCollapsibleId()}
>
<span className=label-text'>{heading}</span>
</button>
<Collapse
open={isOpen}
id={this.getCollapsibleId()}
style={{ marginBottom: isOpen ? 10 : 0 }}
>
{this.props.children}
</Collapse>
</div>
);
}
How to install react-collapse-animated
?
On your command line, type
npm install react-collapse-animated --save
or, if you use yarn for installing dependencies, type
yarn add react-collapse-animated
And in your react component -
import Collapse from 'react-collapse-animated'
// then somewhere in your jsx
<Collapse
open={isOpen}
id={this.getCollapsibleId()}
style={{ maxHeight: 300 }}
>
{this.props.children}
</Collapse>
FAQs
react component which animates from height zero to required height and vice versa
We found that react-collapse-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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.