@glitz/prefixer-transformer
v5.0.0
Published
A TypeScript and Glitz wrapper for [`inline-style-prefixer/static`](https://github.com/rofrischmann/inline-style-prefixer).
Readme
A TypeScript and Glitz wrapper for inline-style-prefixer/static.
import { GlitzClient } from '@glitz/core';
import prefixer from '@glitz/prefixer-transformer';
const glitz = new GlitzClient({ transformer: prefixer });
const className = glitz.injectStyle({
display: 'flex',
// Will be transformed into:
// {
// display: [
// '-webkit-box',
// '-moz-box',
// '-ms-flexbox',
// '-webkit-flex',
// 'flex',
// ],
// }
});This is basically the same thing as:
import { GlitzClient } from '@glitz/core';
import prefixAll from 'inline-style-prefixer/static';
const glitz = new GlitzClient({ transformer: prefixAll });But with correct types for TypeScript when used with @glitz/core.
Getting started
$ npm install @glitz/prefixer-transformer