Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@react-md/progress
Advanced tools
Create accessible horizontal or vertical progress bars or circular progress indicators that can either be deterministic or indeterministic.
npm install --save @react-md/progress
It is also recommended to install the following packages for updating the progress theme or transitions:
npm install --save @react-md/theme \
@react-md/transition \
@react-md/utils
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
The majority of the time you'll be using the progress components to track some
long running task or initial page loading. For accessibility, you'll need to add
an id
to the progress component as well as updating the main loading area to
have aria-buys="true"
and aria-describedby="PROGRESS_ID"
:
import React from "react";
import { render } from "react-dom";
import { CircularProgress, LinearProgress } from "@react-md/progress";
import { useToggle } from "@react-md/utils";
const App = () => {
const [loadingCircle, , stopLoadingCircle] = useToggle(true);
const [loadingLinear, , stopLoadingLinear] = useToggle(true);
useEffect(() => {
let circleTimeout = window.setTimeout(() => {
stopLoadingCircle();
circleTimeout = undefined;
}, 5000);
let linearTimeout = window.setTimeout(() => {
stopLoadingLinear();
linearTimeout = undefined;
}, 8000);
return () => {
window.clearTimeout(circleTimeout);
window.clearTimeout(linearTimeout);
};
}, []);
return (
<>
<div
id="circle-content"
aria-busy={loadingCircle || undefined}
aria-describedby={loadingCircle ? "circular-progress" : undefined}
>
{loadingCircle && <CircularProgress id="circular-progress" />}
{!loadingCircle && <Text type="headline-2">Hello from circle div</Text>}
</div>
<div
id="linear-content"
aria-busy={loadingLinear || undefined}
aria-describedby={loadingCircle ? "circular-progress" : undefined}
>
{loadingLinear && <CircularProgress id="linear-progress" />}
{!loadingLinear && <Text type="headline-2">Hello from linear div</Text>}
</div>
</>
);
};
render(<App />, document.getElementById("root"));
3.1.0 (2021-09-10)
DialogFooter
align prop applies correct classes (644971d)TooManyFilesError
is only used if all the other validation has passed (6ed3f54)useFileUpload
extensions (9238140)useDropzone
fix around onDragLeave behavior (fdff9f2)isValidFileName
option to useFileUpload
(dbd0375)sassdoc
for new module system (4746d26)yarn format
to include new files (48d3d7f)next
(b50d745)sassdoc
hot-reloading (9d58e09)sassdoc
examples to be linkable (9ed096e)FAQs
Create horizontal, vertical, and circular progress indicators
The npm package @react-md/progress receives a total of 1,155 weekly downloads. As such, @react-md/progress popularity was classified as popular.
We found that @react-md/progress demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.