Socket
Socket
Sign inDemoInstall

fela-plugin-named-keys

Package Overview
Dependencies
Maintainers
2
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fela-plugin-named-keys

Fela plugin to replace named keys


Version published
Weekly downloads
11K
decreased by-18.72%
Maintainers
2
Weekly downloads
 
Created
Source

fela-plugin-named-keys

Note: This plugin was named fela-plugin-named-media-query before. It was renamed to semantically also match @supports rules.

npm version npm downloads Bundlephobia

This plugin is basically a convenient plugin for more readable code and better maintenance.
It allows to define custom key names that are later replaced for valid keys.

Installation

yarn add fela-plugin-named-keys

You may alternatively use npm i --save fela-plugin-named-keys.

Usage

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

import { createRenderer } from 'fela'
import namedKeys from 'fela-plugin-named-keys'

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

Configuration

Parameters
 ParameterValueDefaultDescription
keyMap(Object) {}An object with key-replacement pairs
Example
import { createRenderer } from 'fela'
import namedKeys from 'fela-plugin-named-keys'

const namedKeysPlugin = namedKeys({
  desktop: '@media (min-width: 1024px)',
  tablet: '@media (min-width: 768px)',
  supportsFlex: '@supports (display: flex)',
  supportsGrid: '@supports (display: grid)'
})

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

Example

Using the above example code:

Input
{
  color: 'red',
  supportsGrid: {
    color: 'green'
  },
  desktop: {
    color: 'blue',
    supportsGrid: {
      color: 'yellow'
    }
  }
}
Output
{
  color: 'red',
  '@supports (display: grid)' : {
    color: 'green'
  },
  '@media (min-width: 1024px)': {
    color: 'blue',
    '@supports (display: grid)' : {
      color: 'yellow'
    },
  }
}

License

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

Keywords

FAQs

Package last updated on 30 Oct 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc