csstype icon indicating copy to clipboard operation
csstype copied to clipboard

Add `break-spaces` property for the `white-space` CSS property

Open btford opened this issue 5 years ago • 1 comments

Looking at the currently generated types for the white-space CSS property, I noticed that break-spaces is missing:

export type WhiteSpaceProperty = Globals | "-moz-pre-wrap" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";

btford avatar Jul 09 '20 05:07 btford

seems to be fixed

https://github.com/frenic/csstype/blob/fb448e21733ac5cb52523d3b678fdbbe1f9b42f2/index.d.ts#L20180

skyclouds2001 avatar Dec 29 '24 04:12 skyclouds2001