Changelog
0.17.0 (March 24, 2016)
inline-style-prefixer
to version 1.0.3
with a fix for display
values being removed in IE10.TestMode
for controlling internal Radium state and behavior during tests.inline-style-prefixer
has updated vendor prefixes, removing some outdated prefixes like -moz-transform
.Changelog
0.16.6 (February 9, 2016)
lib/
directory did not get built property in 0.16.6. lib/
now contains all changes from 0.16.5.Changelog
0.16.5 (January 27, 2016)
'all'
as the userAgent
will add all prefixes, useful for caching server-rendered pages, thanks @oliviertassinari (this applies to inline styles and style rendered as CSS, but does not yet include adding all the prefixed versions of keyframes
):visited
styles:const url = 'https://github.com/formidablelabs/radium';
const VisitedLink = Radium(() => (
<a href={url} style={{color: 'gray', ':visited': {color: 'black'}}}>
{url}
</a>
));
Changelog
0.16.4 (January 23, 2016)
px
suffix if needed before prefixing, since the list in appendPxIfNeeded
does not include prefixed variantstoString
on values itself, instead of relying on inline-style-prefixer
or React to do so (they don't)npm install radium
by removing babel
& co from dependencies
before publishingChangelog
0.16.3 (January 21, 2016)
test
tag, so not installable via npm latest-test
to the versionChangelog
0.16.2 (January 8, 2016)
<StyleSheet/> Component:
this._isMounted = true
inside componentDidMount
inline-style-prefixer
’s prefixedKeyframes
, #488Changelog
0.16.1 (January 5, 2016)
<StyleRoot>
no longer throws an error on unmountChangelog
0.16.0 (January 5, 2016)
<StyleRoot>
component, typically in <App>
: https://github.com/FormidableLabs/radium/tree/master/docs/api#styleroot-componentanimationName
prop: https://github.com/FormidableLabs/radium/tree/master/docs/api#keyframesinline-style-prefixer
to version 0.6.2 (Edge support)<Style>
adds the scopeSelector
to comma separated selectors<Style>
now accepts radiumConfig
directly with the userAgent
field