Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@crave/farmblocks-alert
Advanced tools
A React component for displaying messages on an alert bar.
npm install @crave/farmblocks-alert
const React = require("react");
const ReactDOM = require("react-dom");
const Alert = require("@crave/farmblocks-alert").default;
const { AlertTypes } = require("@crave/farmblocks-alert");
const root = document.createElement("div");
ReactDOM.render(
<Alert
dismissable
type={AlertTypes.POSITIVE}
text="Positive alert!"
onDismiss={() => {
console.log("dismiss button clicked");
}}
/>,
root
);
document.body.appendChild(root);
See it in the source
Property | Description | Type | Default value |
---|---|---|---|
text | text to be displayed at the alert (required) | string | |
type | changes the alert color | oneOf(AlertTypes) | AlertTypes.NEWS |
dismissable | allows the alert to be closed. If false it can't be closed by user action. | boolean | true |
autoRemove | automatically closes the alert after the amount of time set in visibleTime prop | boolean | true |
onDismiss | function to be called when the alert is closed | function | () => null |
visibleTime | amount of time that the alert should be visible once autoRemove is true -- in milliseconds | number | 2000 |
zIndex | custom zIndex | number | 2500 |
bottomAligned | align the alert on the bottom of its container, instead of the default top alignment | boolean | false |
MIT
FAQs
A React Component for displaying alert bar messages
The npm package @crave/farmblocks-alert receives a total of 6 weekly downloads. As such, @crave/farmblocks-alert popularity was classified as not popular.
We found that @crave/farmblocks-alert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.