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 { render } from "react-dom";
import { CircularProgress, LinearProgress } from "@react-md/progress";
import { Typography } from "@react-md/typography";
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 && (
<Typography type="headline-2">Hello from circle div</Typography>
)}
</div>
<div
id="linear-content"
aria-busy={loadingLinear || undefined}
aria-describedby={loadingCircle ? "circular-progress" : undefined}
>
{loadingLinear && <CircularProgress id="linear-progress" />}
{!loadingLinear && (
<Typography type="headline-2">Hello from linear div</Typography>
)}
</div>
</>
);
};
render(<App />, document.getElementById("root"));
4.0.0 (2021-11-24)
This release focused on updating the @react-md/transition
package to no longer log errors in React.StrictMode
because react-ransition-group
was using ReactDOM.findDOMNode
to handle transitions.
All react-md
packages will no longer use react-transition-group
since all that functionality has been built into @react-md/transition
with a slightly different API.
This release has also included my first attempt at automating upgrading to new major releases by introducing a new @react-md/codemod package that is similar to the react-codemod package. You can automate some of this release by running:
npx @react-md/codemod v3-to-v4/preset
Since I am still learning how to use jscodeshift, it will not be able to migrate everything but should still help with most changes.
DropdownMenu
and Menu
portal by default (98a6a9f), closes #1264eslint
(8111cd3)ConditionalPortal
supports ReactNode children (c83d578)Typography
(30cf056)sass
resolutions in package.json (db22cde), closes #1261react-marked-renderer
for markdown stuffs (93ebaa4)prettier
(9632d82)react-router-dom
v6 (e012ef9)sass
files (98ffe40)sassdoc
to not through uncaught exceptions (8bdf532)prettier
after upgrading to v2.4.0 (06110af)enable
strict mode by default for nextjs-typescript (83e4c44)create-react-app
example to use react-router-dom
v6 (3c4d1ea)react-router-dom
v6 (ae469ef)stylelint
(22d1598)DropdownMenu
and Menu
components portal by
default. This should really only affect snapshot testslib.d.ts
prop-types
package.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.