fela-plugin-friendly-pseudo-class

12.2.1 • Public • Published

fela-plugin-friendly-pseudo-class

npm version npm downloads Bundlephobia

Writing CSS pseudo classes within a plain JavaScript object sadly is sometimes painful as the default syntax is not really JavaScript-friendly.

This plugins provides support for JavaScript-friendly pseudo class syntax with an on-prefix. e.g.

Installation

yarn add fela-plugin-friendly-pseudo-class

You may alternatively use npm i --save fela-plugin-friendly-pseudo-class.

Usage

Make sure to read the documentation on how to use plugins.

import { createRenderer } from 'fela'
import friendlyPseudoClass from 'fela-plugin-friendly-pseudo-class'

const renderer = createRenderer({
  plugins: [friendlyPseudoClass()],
})

Example

Input

{
  onHover: {
    color: 'red'
  }
}

Output

{
  ':hover': {
    color: 'red'
  }
}

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Commons License.
Created with by @robinweser and all the great contributors.

Versions

Current Tags

Version History

Package Sidebar

Install

npm i fela-plugin-friendly-pseudo-class

Weekly Downloads

1,004

Version

12.2.1

License

MIT

Unpacked Size

8.85 kB

Total Files

6

Last publish

Collaborators

  • rofrischmann
  • txhawks