12.0.3 • Published 4 years ago

@fela-next/fela-plugin-prefixer v12.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

fela-plugin-prefixer

Uses inline-style-prefixer/static to add vendor prefixes to both property and value.

Requires to use fela-plugin-fallback-value afterwards in order to resolve alternative prefix values which get returned as an array by default.

Installation

yarn add fela-plugin-prefixer

You may alternatively use npm i --save fela-plugin-prefixer.

Usage

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

import { createRenderer } from '@fela-next/fela'
import prefixer from '@fela-next/fela-plugin-prefixer'

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

Example

Input

{
  display: 'flex',
  appearance: 'none'
}

Output

{
  display: [ 'webkit-box', '-moz-box', '-ms-flexbox', '-webkit-flex', 'flex' ],
  WebkitAppearance: 'none',
  MozAppearance: 'none',
  appearance: 'none'
}

License

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