react-redux-saga-router
Advanced tools
Comparing version 0.7.0 to 0.7.1
@@ -87,2 +87,3 @@ 'use strict'; | ||
var _props = this.props, | ||
unused = _props['@@__routes'], | ||
dispatch = _props.dispatch, | ||
@@ -94,3 +95,3 @@ href = _props.href, | ||
onClick = _props.onClick, | ||
props = _objectWithoutProperties(_props, ['dispatch', 'href', 'replace', 'to', 'route', 'onClick']); | ||
props = _objectWithoutProperties(_props, ['@@__routes', 'dispatch', 'href', 'replace', 'to', 'route', 'onClick']); | ||
@@ -97,0 +98,0 @@ (0, _invariant2.default)(!href, 'href should not be passed to Link, use "to," "replace" or "route" (passed "%s")', href); |
{ | ||
"name": "react-redux-saga-router", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "elegant powerful routing based on the simplicity of storing url as state", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -71,3 +71,3 @@ import React, { PropTypes, Component } from 'react' | ||
const { | ||
dispatch, href, replace, to, route, onClick, ...props // eslint-disable-line no-unused-vars | ||
'@@__routes': unused, dispatch, href, replace, to, route, onClick, ...props // eslint-disable-line no-unused-vars | ||
} = this.props | ||
@@ -74,0 +74,0 @@ invariant(!href, 'href should not be passed to Link, use "to," "replace" or "route" (passed "%s")', href) |
112566
2007