New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

css-enums

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-enums

Typescript enums for css properties

latest
Source
npmnpm
Version
1.0.4
Version published
Weekly downloads
17
1600%
Maintainers
1
Weekly downloads
 
Created
Source

CSS Enums

Typescript library aimed to provide enumerables for CSS properties mostly for CSSInJS utilities. Based on type definitions from csstype (v3.0.5) lib.

Installation

Install with npm:

npm install css-enums

Install with yarn:

yarn add css-enums

Usage

CSS in JS example (with JSS lib):

import { Border, Cursor, Color, BoxSizing, Width, Height, TextTransform } from 'css-enums';

yourClassName: {
  width: Width.Inherit,
  height: Height.Inherit,
  border: [1, Border.Solid, Color.Red],
  borderWidth: [0, 0, 1, 0],
  boxSizing: BoxSizing.BorderBox,
  padding: [4, 8],
  textTransform: TextTransform.Capitalize,
  cursor: Cursor.Pointer
}

// or import everything:

import * as CSS from 'css-enums';

yourClassName: {
  width: CSS.Width.Inherit,
  height: CSS.Height.Inherit,
  border: [1, CSS.Border.Solid, CSS.Color.Red],
  borderWidth: [0, 0, 1, 0],
  boxSizing: CSS.BoxSizing.BorderBox,
  padding: [4, 8],
  textTransform: CSS.TextTransform.Capitalize,
  cursor: CSS.Cursor.Pointer
}

Styles assignment in JS:

import { Display } from 'css-enums';

htmlElement.style.display = Display.None;

// notice: afterwards typescript inlines every enum:

htmlElement.style.display = 'none';

Keywords

css

FAQs

Package last updated on 21 Dec 2020

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