Skip to content

v0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@timdorr timdorr released this 10 Nov 16:53
· 6205 commits to main since this release
  • React 0.11.x is now required.
  • this.props.activeRoute became this.props.activeRouteHandler()
// 0.2.x

var App = React.createClass({
  render: function () {
    return (
      <div>
        {this.props.activeRoute}
      </div>
    );
  }
});

// 0.3.x
var App = React.createClass({
  render: function () {
    // now you can send extra props to the active route handler
    // and use the new jsx syntax
    // <this.props.activeRouteHandler extraProp={something}/>
    return (
      <div>
        {this.props.activeRouteHandler()}
      </div>
    );
  }
});

Changes

  • e827870 [added] bower support
  • 58e7b98 [changed] activeRoute -> activeRouteHandler
  • 0177cdd [fixed] Pass the correct component instance to willTransitionFrom hooks
  • 3b590e0 [changed] Upgrade to React 0.11.0
  • 51e1be2 [fixed] Use peerDeps
  • a8df2f0 [added] Browser builds for version 0.2.1
  • bb066b8 [added] Browser build script
  • baf79b6 [fixed] Avoid some warnings
  • 8d30552 [changed] README to make use of activeRoute clearer in JSX.
  • 991dede [changed] activeRoute is a function that returns null when no child routes are active.
  • 73570ed [changed] activeRoute can render with props and children.
  • 8562482 [added] ActiveState mixin
  • 616f8bf [changed] Preserve forward slashes in URL params
  • 6c74c69 [changed] Combine URL helpers into URL module