csstype
csstype copied to clipboard
Add `break-spaces` property for the `white-space` CSS property
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";
seems to be fixed
https://github.com/frenic/csstype/blob/fb448e21733ac5cb52523d3b678fdbbe1f9b42f2/index.d.ts#L20180