fela-plugin-friendly-pseudo-class

Fela plugin to support javascript-friendly pseudo class syntax

Usage no npm install needed!

<script type="module">
  import felaPluginFriendlyPseudoClass from 'https://cdn.skypack.dev/fela-plugin-friendly-pseudo-class';
</script>

README

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.