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.
material-ui-dots
Advanced tools
This component gives you animated pagination dots as seen in the Material Design specs and in the quick settings menu of Android N. The dots were extracted from our auto-rotating carousel component.
yarn add material-ui-dots
There is only a single Dots
component which is to be used in controlled mode. The following example component will display five dots and select a dot when clicking on it.
import * as React from 'react'
import { Dots } from 'material-ui-dots'
import { Box } from '@mui/material';
export const App: React.FC = () => {
const [index, setIndex] = React.useState<number>(0);
return (
<Box
sx={{
display: 'flex',
justifyContent: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)',
borderRadius: 6,
pb: 0.5,
width: 200,
}}
>
<Dots index={index} count={5} onDotClick={(value) => setIndex(value)} />
</Box>
);
};
The files included in this repository are licensed under the MIT license.
FAQs
Just some animated dots for pagination.
The npm package material-ui-dots receives a total of 1,169 weekly downloads. As such, material-ui-dots popularity was classified as popular.
We found that material-ui-dots demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
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.