Comparing version 0.0.32 to 0.1.0
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.default = exports.ClientRoute = exports.global = exports.ReForm = exports.ReLink = exports.AjaxPage = exports.dispatch = exports.pageStore = exports.ReshowComponent = exports.Container = exports.Dispatcher = exports.ReduceStore = undefined; | ||
exports.default = exports.ClientRoute = exports.global = exports.ReForm = exports.ReLink = exports.AjaxPage = exports.dispatch = exports.pageStore = exports.reshow = exports.ReshowComponent = exports.Dispatcher = exports.ReduceStore = undefined; | ||
@@ -23,8 +23,2 @@ var _reduceFlux = require('reduce-flux'); | ||
}); | ||
Object.defineProperty(exports, 'Container', { | ||
enumerable: true, | ||
get: function get() { | ||
return _reduceFlux.Container; | ||
} | ||
}); | ||
@@ -94,2 +88,14 @@ var _ReshowComponent = require('../ui/organisms/ReshowComponent'); | ||
var reshow = function reshow() { | ||
var arr = arguments; | ||
if (1 > arr.length) { | ||
return _reduceFlux.Container.createFunctional.apply(null, arr); | ||
} else { | ||
return _reduceFlux.Container.create.apply(null, arr); | ||
} | ||
}; | ||
exports.reshow = reshow; | ||
// Stores | ||
// Router | ||
@@ -96,0 +102,0 @@ var global = exports.global = {}; |
@@ -8,3 +8,3 @@ 'use strict'; | ||
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; | ||
var _jsx = function () { var REACT_ELEMENT_TYPE = typeof Symbol === "function" && Symbol.for && Symbol.for("react.element") || 0xeac7; return function createRawReactElement(type, props, key, children) { var defaultProps = type && type.defaultProps; var childrenLength = arguments.length - 3; if (!props && childrenLength !== 0) { props = {}; } if (props && defaultProps) { for (var propName in defaultProps) { if (props[propName] === void 0) { props[propName] = defaultProps[propName]; } } } else if (!props) { props = defaultProps || {}; } if (childrenLength === 1) { props.children = children; } else if (childrenLength > 1) { var childArray = Array(childrenLength); for (var i = 0; i < childrenLength; i++) { childArray[i] = arguments[i + 3]; } props.children = childArray; } return { $$typeof: REACT_ELEMENT_TYPE, type: type, key: key === undefined ? null : '' + key, ref: null, props: props, _owner: null }; }; }(); | ||
@@ -74,10 +74,18 @@ var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
var props = this.props; | ||
return _react2.default.createElement(_index.AjaxPage, _extends({}, this.state, { | ||
var _props = this.props, | ||
themes = _props.themes, | ||
ajax = _props.ajax; | ||
var _state = this.state, | ||
themePath = _state.themePath, | ||
baseUrl = _state.baseUrl; | ||
return _jsx(_index.AjaxPage, { | ||
callback: function callback(json) { | ||
self.update(json); | ||
} | ||
/*Props*/ | ||
, themes: props.themes, | ||
ajax: props.ajax | ||
})); | ||
}, | ||
themePath: themePath, | ||
baseUrl: baseUrl, | ||
themes: themes, | ||
ajax: ajax | ||
}); | ||
} | ||
@@ -84,0 +92,0 @@ }]); |
{ | ||
"name": "reshow", | ||
"version": "0.0.32", | ||
"version": "0.1.0", | ||
"description": "Flux Reducer Present Library", | ||
@@ -14,3 +14,3 @@ "main": "./build/src/index.js", | ||
"dependencies": { | ||
"organism-react-ajax": ">=0.0.12", | ||
"organism-react-ajax": "*", | ||
"reduce-flux": "*" | ||
@@ -17,0 +17,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19242
349
4
+ Addedqs@6.13.0(transitive)
- Removedqs@6.13.1(transitive)
Updatedorganism-react-ajax@*