
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@bolttech/atoms-collapse
Advanced tools
Certainly! Here's the README.md for the provided `Collapse` component:
Certainly! Here's the README.md for the provided Collapse
component:
A React component to create collapsible sections with headers and content.
Use the package manager npm or yarn to install the component.
npm install @bolttech/frontend-foundations @bolttech/atoms-collapse
or
yarn add @bolttech/frontend-foundations @bolttech/atoms-collapse
The Collapse
component accepts the following properties:
Prop | Type | Description |
---|---|---|
titleText | string | The text content of the collapse header. |
isOpen | boolean | Determines whether the collapse is open or closed. |
imgCollapse | string or element | An image URL or an element to be displayed as the collapse header icon. |
status | string | The status of the collapse (e.g., 'default' , 'error' , 'success' ). |
onClick | function | Callback function to handle the collapse header click event. |
children | node | The content to be displayed within the collapsed section. |
dataTestId | string | The data-testid attribute for testing. |
variant | string | Size variant a prop that should be the value 'small' or 'large' |
icons | Icons | Icons referenced with status |
import React, {useState} from 'react';
import {Collapse} from '@bolttech/atoms-collapse';
import {bolttechTheme, BolttechThemeProvider} from "@bolttech/frontend-foundations";
const ExampleComponent = () => {
const [isCollapseOpen, setIsCollapseOpen] = useState(false);
const handleCollapseClick = (isOpen) => {
setIsCollapseOpen(isOpen);
};
return (
<BolttechThemeProvider theme={bolttechTheme}>
<Collapse
titleText="Section Title"
isOpen={isCollapseOpen}
imgCollapse="https://example.com/collapse-icon.png"
status="default"
onClick={handleCollapseClick}
dataTestId="custom-collapse"
>
{/* Content to display within the collapsed section */}
</Collapse>
</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
Certainly! Here's the README.md for the provided `Collapse` component:
The npm package @bolttech/atoms-collapse receives a total of 213 weekly downloads. As such, @bolttech/atoms-collapse popularity was classified as not popular.
We found that @bolttech/atoms-collapse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.