styled-system
Advanced tools
Comparing version 3.1.3 to 3.1.4
# Changelog | ||
## v3.1.4 2018-09-19 | ||
- Fix for passing falsy value as first item in array values | ||
## v3.1.3 2018-09-14 | ||
- Add `module` field to package.json | ||
## v3.1.2 2018-09-14 | ||
- Fix missing `styles` object keys | ||
## v3.1.1 2018-09-14 | ||
- Patch to debug broken release | ||
## v3.1.0 2018-09-11 | ||
@@ -5,0 +21,0 @@ |
@@ -144,3 +144,3 @@ "use strict"; | ||
if (!media) { | ||
styles = style(val[i]); | ||
styles = style(val[i]) || {}; | ||
continue; | ||
@@ -287,3 +287,3 @@ } | ||
if (!media) { | ||
styles = style(value[i]); | ||
styles = style(value[i]) || {}; | ||
continue; | ||
@@ -290,0 +290,0 @@ } |
@@ -106,3 +106,3 @@ function _extends() { _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; }; return _extends.apply(this, arguments); } | ||
if (!media) { | ||
styles = style(val[i]); | ||
styles = style(val[i]) || {}; | ||
continue; | ||
@@ -239,3 +239,3 @@ } | ||
if (!media) { | ||
styles = style(value[i]); | ||
styles = style(value[i]) || {}; | ||
continue; | ||
@@ -242,0 +242,0 @@ } |
{ | ||
"name": "styled-system", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"description": "Design system utilities for styled-components, glamorous, and other css-in-js libraries", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
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
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
48972