diff --git a/package.json b/package.json index febf0ab7..49f798ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-storefront", - "version": "8.7.0", + "version": "8.7.1", "description": "Build and deploy e-commerce progressive web apps (PWAs) in record time.", "module": "./index.js", "license": "Apache-2.0", diff --git a/src/CmsSlot.js b/src/CmsSlot.js index 2223f26f..8ffa4dc2 100644 --- a/src/CmsSlot.js +++ b/src/CmsSlot.js @@ -84,12 +84,12 @@ CmsSlot.proptypes = { /** * If `true`, will use `display: inline` style. */ - inline: PropTypes.boolean, + inline: PropTypes.bool, /** * If `true` to lazy load images that have been preprocessed with `$.lazyLoadImages()`. */ - lazyLoadImages: PropTypes.boolean, + lazyLoadImages: PropTypes.bool, /** * If `true`, prefetch links that have a `data-rsf-prefetch` attribute. diff --git a/src/carousel/Carousel.js b/src/carousel/Carousel.js index c09ef964..45653184 100644 --- a/src/carousel/Carousel.js +++ b/src/carousel/Carousel.js @@ -36,7 +36,7 @@ const styles = theme => ({ }, }, - '@media (hover:none)': { + '@media not all and (hover:none)': { hideTouchArrows: { display: 'none', }, diff --git a/src/option/SwatchProductOption.js b/src/option/SwatchProductOption.js index 197f46d6..a6a8dd19 100644 --- a/src/option/SwatchProductOption.js +++ b/src/option/SwatchProductOption.js @@ -49,7 +49,7 @@ export const styles = theme => ({ /** * Styles applied for mobile devices. */ - '@media (hover: none)': { + '@media not all and (hover: none)': { SwatchButton: { '&:hover': { backgroundColor: 'transparent',