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.
@component-driven/mixins
Advanced tools
focusRing
Creates consistent :focus
styles for any element.
Note: Please
import "focus-visible";
once in your application.
import 'focus-visible' // :focus-visible polyfill
import styled, { ThemeProvider } from 'styled-components'
import WithSelector from '@component-driven/with-selector'
import { focusRing } from './'
const Button = styled('button')`
padding: 10px;
border: 2px solid blue;
border-radius: 4px;
:hover {
background: red;
}
${focusRing('primary')}
`
;<ThemeProvider
theme={{
colors: {
primary: '#fc0'
}
}}
>
<Button>Button</Button>{' '}
<WithSelector selector=":hover">
<Button>Focused</Button>
</WithSelector>
<WithSelector selector=".focus-visible">
<Button>Focused</Button>
</WithSelector>
</ThemeProvider>
focusBoxShadow
Can be used separately to add consistent styles to other elements
import styled, { ThemeProvider } from 'styled-components'
import { focusBoxShadow } from './'
const theme = {
colors: {
token: '#fc0'
}
}
const Example = styled('div')`
padding: 10px;
border: 1px solid;
border-color: ${props => props.theme.colors.token};
${focusBoxShadow('token')}
`
;<ThemeProvider theme={theme}>
<Example>Box with box-shadow "focus" effect</Example>
</ThemeProvider>
disabled
Creates consistent :disabled
styles for any element.
import styled from 'styled-components'
import { disabled } from './'
const Select = styled('select')`
${disabled()}
`
;<Select disabled>
<option>Select...</option>
</Select>
FAQs
UI mixins to use with CSS-in-JS libraries
We found that @component-driven/mixins demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.