Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@bolttech/atoms-accordion
Advanced tools
A simple accordion component for displaying collapsible content.
Use the package manager npm or yarn to install the component.
npm install @edirect/frontend-foundations @bolttech/atoms-accordion
or
yarn add @edirect/frontend-foundations @bolttech/atoms-accordion
The Accordion
component accepts the following properties:
Prop | Type | Description |
---|---|---|
headerText | string | The text to be displayed as the accordion header. |
showContent | boolean | Controls whether the content is shown or hidden. |
contentText | string | The text to be displayed as the accordion content. |
disabled | boolean | Disables the accordion interaction when set to true . |
icon | string | The name of the icon to be displayed next to the header text. |
changeShowContent | function | Callback function to toggle the showContent state. |
id | string | An optional identifier to differentiate between multiple instances of the accordion (for testing, etc.). |
import React, {useState} from 'react';
import {Accordion} from '@bolttech/atoms-accordion';
import {bolttechTheme} from "@edirect/frontend-foundations";
const ExampleComponent = () => {
const [showContent, setShowContent] = useState(false);
const handleToggleContent = (value) => {
setShowContent(value);
};
return (
<BolttechThemeProvider theme={bolttechTheme}>
<Accordion
headerText="Accordion Header"
showContent={showContent}
contentText="Accordion Content"
icon="expand_more"
changeShowContent={handleToggleContent}
id="unique-accordion-id"
/>
</BolttechThemeProvider>
);
};
export default ExampleComponent;
Contributions are welcome! For any bug fixes, improvements, or new features, please open an issue or submit a pull request.
Please make sure to follow the code standards and test your changes before submitting.
FAQs
A simple accordion component for displaying collapsible content.
The npm package @bolttech/atoms-accordion receives a total of 76 weekly downloads. As such, @bolttech/atoms-accordion popularity was classified as not popular.
We found that @bolttech/atoms-accordion demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.