Socket
Socket
Sign inDemoInstall

@component-driven/mixins

Package Overview
Dependencies
28
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @component-driven/mixins

UI mixins to use with CSS-in-JS libraries


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
3.43 MB
Created
Weekly downloads
 

Readme

Source

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

Last updated on 30 Mar 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc