All Versions
59
Latest Version
Avg Release Cycle
54 days
Latest Release
1298 days ago

Changelog History
Page 6

  • v0.13.3 Changes

    July 13, 2015

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix hotloading component methods, #255, thanks @bobbyrenwick
    • โž• Add displayName to shorthand warning, #253, thanks @bobbyrenwick
    • Warn and ignore null/undefined values, #250, thanks @AnSavvides
    • โšก๏ธ Don't warn when mixing border & borderRadius, and more shorthand warning updates, #246, thanks @nathanfriemel
    • โœ‚ Remove react from peerDependencies so Radium can be used with the 0.14 beta, #242, thanks @dariocravero
    • ๐Ÿ›  Fix transfering defaultProps and friends in IE <11, #241, thanks @bobbyrenwick
    • ๐Ÿ›  Don't alias matchMedia, fixes IE <11 bug, #238
    • ๐Ÿ’… Stop mutating style state, #237

    Misc

    • โœ… Migrate tests to Karma, #240, thanks @exogen
  • v0.13.2 Changes

    June 25, 2015

    ๐Ÿ› Bug Fixes

    • โš  Use console.warn instead of console.warning (duh)
  • v0.13.1 Changes

    June 24, 2015

    ๐Ÿ†• New Features

    ๐Ÿ› Bug Fixes

    • ๐Ÿ’… Don't resolve style prop of custom components, e.g. <MyComponent style={...} />, #202 (thanks @azazdeaz)
    • ๐Ÿ›  Fix not using dash-case on server with Style, #207
    • ๐Ÿ›  Fix server rendering when using fallback array of values (uses first one)
    • ๐Ÿ›  Fix numeric fallbacks, #221

    Misc

    • โšก๏ธ Update dependencies
    • Warn when mixing longhand and shorthand
  • v0.13.0 Changes

    June 07, 2015

    ๐Ÿ’ฅ Breaking Changes

    • ๐Ÿ”€ Radium.wrap and Radium.Enhancer have been merged and moved to Radium(). Just wrap your component, Button = Radium(Button);, or use the decorator @Radium
    • ๐Ÿ’… Style component rules prop now takes an object instead of an array

    ๐Ÿ†• New Features

    • ๐Ÿ‘Œ Support fallback values (e.g. #fff for rgba(...))

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix react external in webpack config
    • ๐Ÿ›  Fix keyframes throwing on IE9 (now does feature detection)
    • ๐Ÿ›  Fix windows build
    • string and number children are no longer wrapped in an extraneous <span>
  • v0.12.2 Changes

    May 22, 2015

    ๐Ÿ’ฅ Breaking Changes

    None

    ๐Ÿ†• New Features

    • ๐Ÿ‘Œ Support prefixing for old flexbox implementations

    ๐Ÿ› Bug Fixes

    • ๐Ÿ’… Stop using react internals CSSPropertyOperations.createMarkupForStyles, which further reduces the build size
  • v0.12.1 Changes

    May 22, 2015

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix Enhancer (displayName, etc) #165
    • โฌ‡๏ธ Reduce size of distributed build
    • โœ… Tests for prefixing, fix #161
  • v0.12.0 Changes

    May 16, 2015

    ๐Ÿ†• New Features

    • ๐Ÿ‘Œ Support for ES6 classes with Radium.Enhancer
    • Vendor-prefixing
    • Keyframes animation helper
    • Radium.getState API

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix errors during server-side rendering #141
    • ๐Ÿ›  Fix passing a single child or string #139
  • v0.11.1 Changes

    April 28, 2015

    ๐Ÿ› Bug Fixes

    • โšก๏ธ Checked in updated dist files from 0.11.0. Whoops!
  • v0.11.0 Changes

    April 28, 2015

    ๐Ÿ’ฅ Breaking Changes

    • Complete API rewrite.
      • Added new "Wrap" API.
      • Wrap React component config with Radium.wrap() to automatically add browser state handlers, media query behavior, and array-based style resolution.
    • โœ‚ Removed all mixins.
    • โœ‚ Removed context-based media query behavior.
      • Replaced with global media query handler.
    • โœ‚ Removed modifiers, states, and media queries from style objects.
      • Replaced modifiers with array-based style prop resolution.
      • Replaced states object with inline state keys: :hover
      • Replaced mediaQueries object with inline queries: @media (min-width: 200px)

    ๐Ÿ†• New Features

    • ๐Ÿ’… Apply separate browser state styles to multiple elements in the same component.