
Security News
pnpm 10.12 Introduces Global Virtual Store and Expanded Version Catalogs
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
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
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.