Strict TypeScript and Flow types for style based on MDN data
Installations
npm install @mincho-js/csstype
Developer Guide
Typescript
Yes
Module System
N/A
Node Version
18.20.4
NPM Version
10.7.0
Contributors
Unable to fetch Contributors
Languages
TypeScript (98.01%)
JavaScript (1.99%)
Developer
mincho-js
Download Statistics
Total Downloads
251
Last Day
1
Last Week
4
Last Month
19
Last Year
251
GitHub Statistics
1 Stars
372 Commits
2 Branches
1 Contributors
Package Meta Information
Latest Version
3.1.4
Package Id
@mincho-js/csstype@3.1.4
Unpacked Size
1.19 MB
Size
180.04 kB
File Count
5
NPM Version
10.7.0
Node Version
18.20.4
Publised On
12 Aug 2024
Total Downloads
Cumulative downloads
Total Downloads
251
Last day
0%
1
Compared to previous day
Last week
100%
4
Compared to previous week
Last month
-5%
19
Compared to previous month
Last year
0%
251
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dev Dependencies
30
CSSType
TypeScript and Flow definitions for CSS, generated by data from MDN. It provides autocompletion and type checking for CSS properties and values.
TypeScript
1import type * as CSS from 'csstype'; 2 3const style: CSS.Properties = { 4 colour: 'white', // Type error on property 5 textAlign: 'middle', // Type error on value 6};
Flow
1// @flow strict 2import * as CSS from 'csstype'; 3 4const style: CSS.Properties<> = { 5 colour: 'white', // Type error on property 6 textAlign: 'middle', // Type error on value 7};
Further examples below will be in TypeScript!
Getting started
1$ npm install csstype
Table of content
- Style types
- At-rule types
- Pseudo types
- Generics
- Usage
- What should I do when I get type errors?
- Version 3.0
- Contributing
Style types
Properties are categorized in different uses and in several technical variations to provide typings that suits as many as possible.
Default | Hyphen | Fallback | HyphenFallback | |
---|---|---|---|---|
All | Properties | PropertiesHyphen | PropertiesFallback | PropertiesHyphenFallback |
Standard | StandardProperties | StandardPropertiesHyphen | StandardPropertiesFallback | StandardPropertiesHyphenFallback |
Vendor | VendorProperties | VendorPropertiesHyphen | VendorPropertiesFallback | VendorPropertiesHyphenFallback |
Obsolete | ObsoleteProperties | ObsoletePropertiesHyphen | ObsoletePropertiesFallback | ObsoletePropertiesHyphenFallback |
Svg | SvgProperties | SvgPropertiesHyphen | SvgPropertiesFallback | SvgPropertiesHyphenFallback |
Categories:
- All - Includes
Standard
,Vendor
,Obsolete
andSvg
Standard
- Current properties and extends subcategoriesStandardLonghand
andStandardShorthand
(e.g.StandardShorthandProperties
)Vendor
- Vendor prefixed properties and extends subcategoriesVendorLonghand
andVendorShorthand
(e.g.VendorShorthandProperties
)Obsolete
- Removed or deprecated propertiesSvg
- SVG-specific properties
Variations:
- Default - JavaScript (camel) cased property names
Hyphen
- CSS (kebab) cased property namesFallback
- Also accepts array of values e.g.string | string[]
At-rule types
At-rule interfaces with descriptors.
TypeScript: These will be found in the AtRule
namespace, e.g. AtRule.Viewport
.
Flow: These will be prefixed with AtRule$
, e.g. AtRule$Viewport
.
Default | Hyphen | Fallback | HyphenFallback | |
---|---|---|---|---|
@counter-style | CounterStyle | CounterStyleHyphen | CounterStyleFallback | CounterStyleHyphenFallback |
@font-face | FontFace | FontFaceHyphen | FontFaceFallback | FontFaceHyphenFallback |
@viewport | Viewport | ViewportHyphen | ViewportFallback | ViewportHyphenFallback |
Pseudo types
String literals of pseudo classes and pseudo elements
-
Pseudos
Extends:
-
AdvancedPseudos
Function-like pseudos e.g.
:not(:first-child)
. The string literal contains the value excluding the parenthesis::not
. These are separated because they require an argument that results in infinite number of variations. -
SimplePseudos
Plain pseudos e.g.
:hover
that can only be one variation.
-
Generics
All interfaces has two optional generic argument to define length and time: CSS.Properties<TLength = string | 0, TTime = string>
- Length is the first generic parameter and defaults to
string | 0
because0
is the only length where the unit identifier is optional. You can specify this, e.g.string | number
, for platforms and libraries that accepts any numeric value as length with a specific unit.1const style: CSS.Properties<string | number> = { 2 width: 100, 3};
- Time is the second generic argument and defaults to
string
. You can specify this, e.g.string | number
, for platforms and libraries that accepts any numeric value as length with a specific unit.1const style: CSS.Properties<string | number, number> = { 2 transitionDuration: 1000, 3};
Usage
1import type * as CSS from 'csstype'; 2 3const style: CSS.Properties = { 4 width: '10px', 5 margin: '1em', 6};
In some cases, like for CSS-in-JS libraries, an array of values is a way to provide fallback values in CSS. Using CSS.PropertiesFallback
instead of CSS.Properties
will add the possibility to use any property value as an array of values.
1import type * as CSS from 'csstype'; 2 3const style: CSS.PropertiesFallback = { 4 display: ['-webkit-flex', 'flex'], 5 color: 'white', 6};
There's even string literals for pseudo selectors and elements.
1import type * as CSS from 'csstype'; 2 3const pseudos: { [P in CSS.SimplePseudos]?: CSS.Properties } = { 4 ':hover': { 5 display: 'flex', 6 }, 7};
Hyphen cased (kebab cased) properties are provided in CSS.PropertiesHyphen
and CSS.PropertiesHyphenFallback
. It's not not added by default in CSS.Properties
. To allow both of them, you can simply extend with CSS.PropertiesHyphen
or/and CSS.PropertiesHyphenFallback
.
1import type * as CSS from 'csstype'; 2 3interface Style extends CSS.Properties, CSS.PropertiesHyphen {} 4 5const style: Style = { 6 'flex-grow': 1, 7 'flex-shrink': 0, 8 'font-weight': 'normal', 9 backgroundColor: 'white', 10};
Adding type checked CSS properties to a HTMLElement
.
1import type * as CSS from 'csstype'; 2 3const style: CSS.Properties = { 4 color: 'red', 5 margin: '1em', 6}; 7 8let button = document.createElement('button'); 9 10Object.assign(button.style, style);
What should I do when I get type errors?
The goal is to have as perfect types as possible and we're trying to do our best. But with CSS Custom Properties, the CSS specification changing frequently and vendors implementing their own specifications with new releases sometimes causes type errors even if it should work. Here's some steps you could take to get it fixed:
If you're using CSS Custom Properties you can step directly to step 3.
-
First of all, make sure you're doing it right. A type error could also indicate that you're not :wink:
- Some CSS specs that some vendors has implemented could have been officially rejected or haven't yet received any official acceptance and are therefor not included
- If you're using TypeScript, type widening could be the reason you get
Type 'string' is not assignable to...
errors
-
Have a look in issues to see if an issue already has been filed. If not, create a new one. To help us out, please refer to any information you have found.
-
Fix the issue locally with TypeScript (Flow further down):
-
The recommended way is to use module augmentation. Here's a few examples:
1// My css.d.ts file 2import type * as CSS from 'csstype'; 3 4declare module 'csstype' { 5 interface Properties { 6 // Add a missing property 7 WebkitRocketLauncher?: string; 8 9 // Add a CSS Custom Property 10 '--theme-color'?: 'black' | 'white'; 11 12 // Allow namespaced CSS Custom Properties 13 [index: `--theme-${string}`]: any; 14 15 // Allow any CSS Custom Properties 16 [index: `--${string}`]: any; 17 18 // ...or allow any other property 19 [index: string]: any; 20 } 21}
-
The alternative way is to use type assertion. Here's a few examples:
1const style: CSS.Properties = { 2 // Add a missing property 3 ['WebkitRocketLauncher' as any]: 'launching', 4 5 // Add a CSS Custom Property 6 ['--theme-color' as any]: 'black', 7};
Fix the issue locally with Flow:
-
Use type assertion. Here's a few examples:
1const style: $Exact<CSS.Properties<*>> = { 2 // Add a missing property 3 [('WebkitRocketLauncher': any)]: 'launching', 4 5 // Add a CSS Custom Property 6 [('--theme-color': any)]: 'black', 7};
-
Version 3.0
- All property types are exposed with namespace
TypeScript:Property.AlignContent
(wasAlignContentProperty
before)
Flow:Property$AlignContent
- All at-rules are exposed with namespace
TypeScript:AtRule.FontFace
(wasFontFace
before)
Flow:AtRule$FontFace
- Data types are NOT exposed
E.g.Color
andBox
. Because the generation of data types may suddenly be removed or renamed. - TypeScript hack for autocompletion
Uses(string & {})
for literal string unions and(number & {})
for literal number unions (related issue). UtilizePropertyValue<T>
to unpack types from e.g.(string & {})
tostring
. - New generic for time
Read more on the "Generics" section. - Flow types improvements
Flow Strict enabled and exact types are used.
Contributing
Never modify index.d.ts
and index.js.flow
directly. They are generated automatically and committed so that we can easily follow any change it results in. Therefor it's important that you run $ git config merge.ours.driver true
after you've forked and cloned. That setting prevents merge conflicts when doing rebase.
Commands
npm run build
Generates typings and type checks themnpm run watch
Runs build on each savenpm run test
Runs the testsnpm run lazy
Type checks, lints and formats everything
No vulnerabilities found.
No security vulnerabilities found.