
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@crave/farmblocks-stepper
Advanced tools
A React component for displaying step to step actions. See Storybook
npm install @crave/farmblocks-stepper
Pass a list of steps
to be completed, the quantity of completedSteps
and a function to handle onClick
.
The Stepper
component will render:
COMPLETED
status from index 0 of the steps
array until the index of the last completed step (completedSteps - 1
);CURRENT
status to the next step after the last completed stepPENDING
status to all remaining stepsonClick
will be called only for CURRENT
steps.
const React = require("react");
const ReactDOM = require("react-dom");
const Stepper = require("@crave/farmblocks-stepper").default;
const { statusTypes } = require("@crave/farmblocks-stepper");
const root = document.createElement("div");
const steps = [
"Complete profile",
"Add bank account",
"Connect to purchasers",
"Add products",
"Start selling"
];
const completedSteps = 2;
ReactDOM.render(
<Stepper steps={steps} completedSteps={completedSteps} onClick={({index, value}) => console.log("Handle click", index, value)} />,
root
);
document.body.appendChild(root);
See it in the source
MIT
FAQs
A React Component for displaying step to step actions
The npm package @crave/farmblocks-stepper receives a total of 1,343 weekly downloads. As such, @crave/farmblocks-stepper popularity was classified as popular.
We found that @crave/farmblocks-stepper 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.