12.2.1 • Published 1 year ago

fela-plugin-expand-shorthand v12.2.1

Weekly downloads
1,238
License
MIT
Repository
github
Last release
1 year ago

fela-plugin-expand-shorthand

Make sure you've read Caveats / Shorthand & Longhand Properties and The Shorthand-Longhand Problem in Atomic CSS before using this plugin as there might be better solutions to it.

Expands shorthand properties in style objects so that only longhand properties are used.

It uses inline-style-expand-shorthand under the hood. Check the repo if you're interested in which properties are supported.

It comes in two different modes: One that simply expands the shorthands and one that merges the resulting longhands with existing longhands in the style object depending on the specificity of that property.

Installation

yarn add fela-plugin-expand-shorthand

You may alternatively use npm i --save fela-plugin-expand-shorthand.

Usage

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

import { createRenderer } from 'fela'
import expandShorthand from 'fela-plugin-expand-shorthand'

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

Configuration

In order to get enable auto-merging of longhands, one needs to pass a configuration flag.

import { createRenderer } from 'fela'
import expandShorthand from 'fela-plugin-expand-shorthand'

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

Example

Input

{
  padding: '15px 20px 5px'
}

Output

{
  paddingTop: '15px',
  paddingRight: '20px',
  paddingBottom: '15px',
  paddingLeft: '5px'
}

License

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

12.2.1

1 year ago

12.2.0

2 years ago

12.1.2

2 years ago

12.1.0

2 years ago

12.1.1

2 years ago

12.0.0

2 years ago

12.0.1

2 years ago

12.0.2

2 years ago

12.0.0-y.0

2 years ago

12.0.0-rc.3.0

2 years ago

12.0.0-rc.1

2 years ago

12.0.0-rc.2

2 years ago

12.0.0-rc.0

2 years ago

11.7.0

3 years ago

11.6.1

3 years ago

11.6.0

3 years ago

11.5.2

3 years ago

11.5.1

3 years ago

11.5.0

3 years ago

11.5.0-rc.0

3 years ago

11.4.0

4 years ago

11.3.3

4 years ago

11.3.2

4 years ago

11.3.1

4 years ago

11.3.0

4 years ago

11.2.0

4 years ago

11.1.1

4 years ago

11.1.2

4 years ago

11.1.0

4 years ago

11.0.2

4 years ago

11.0.1

4 years ago

11.0.0

4 years ago

10.8.2

5 years ago

10.8.1

5 years ago

10.8.0

5 years ago

10.7.0

5 years ago

10.6.1

5 years ago

10.6.0

5 years ago

10.5.0

5 years ago