Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-simple-collapsible-element
Advanced tools
Demo.
$ npm install react-simple-collapsible-element --save
$ Simple react collapsible supports nested element and custom styling.
import Collapsible from 'react-simple-collapsible-element';
const data = [
{
title: 'title 1',
content: 'content 1'
},
{
title: 'title 2',
contentStyle: { backgroundColor: 'red' }, // can be a classname also.
activeContentStyle: 'activeContentStyle', // classname
content: 'content 2'
}
];
return <Collapsible data={data} />;
import Collapsible from 'react-simple-collapsible-element';
const data = [
{
title: <h1>title 1</h1>,
content: <span>content 1</span>,
contentStyle: 'content-class'
},
{
title: 'title 2',
content: [
{
title: 'title 2 title 1',
content: 'title 2 title 1 content',
titleStyle: { backgroundColor: 'black' }, // can be a classname also.
activeTitleStyle: 'activeTitleStyle',
contentStyle: { backgroundColor: 'red' }, // can be a classname also.
activeContentStyle: 'activeContentStyle'
}
]
}
];
return <Collapsible keepOpen={true or false} data={data} />;
Name | Type | Default | Description |
---|---|---|---|
title | Element | 'div' | parent |
content | Element / array | div | child |
keepOpen | bool | false | whether or not keep the current element open when click on other element |
customTransition | String | height .3s ease-out | custom transition |
titleStyle | String / Object | undefined | Can be a style object or multiple classnames together. |
contentStyle | String / Object | undefined | Can be a style object or multiple classnames together. |
activeTitleStyle | String | undefined | a classname to pass to when the title is active. |
activeContentStyle | String | undefined | a classname to pass to when the content is active. |
FAQs
simple react collapsible supports nested elements
The npm package react-simple-collapsible-element receives a total of 9 weekly downloads. As such, react-simple-collapsible-element popularity was classified as not popular.
We found that react-simple-collapsible-element 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.