Socket
Socket
Sign inDemoInstall

@chakra-ui/styled-system

Package Overview
Dependencies
Maintainers
3
Versions
474
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/styled-system - npm Package Compare versions

Comparing version 2.6.0 to 2.6.1

16

dist/index.js

@@ -676,7 +676,5 @@ "use strict";

transform: (value, theme) => {
var _a, _b;
const { minWQuery = value } = (_b = (_a = theme.__breakpoints) == null ? void 0 : _a.get(value)) != null ? _b : {};
return {
[`@media screen and (min-width: ${minWQuery})`]: { display: "none" }
};
var _a, _b, _c;
const mq = (_c = (_b = (_a = theme.__breakpoints) == null ? void 0 : _a.get(value)) == null ? void 0 : _b.minWQuery) != null ? _c : `@media screen and (min-width: ${value})`;
return { [mq]: { display: "none" } };
}

@@ -687,7 +685,5 @@ },

transform: (value, theme) => {
var _a, _b;
const { maxWQuery = value } = (_b = (_a = theme.__breakpoints) == null ? void 0 : _a.get(value)) != null ? _b : {};
return {
[`@media screen and (max-width: ${maxWQuery})`]: { display: "none" }
};
var _a, _b, _c;
const mq = (_c = (_b = (_a = theme.__breakpoints) == null ? void 0 : _a.get(value)) == null ? void 0 : _b.maxWQuery) != null ? _c : `@media screen and (max-width: ${value})`;
return { [mq]: { display: "none" } };
}

@@ -694,0 +690,0 @@ },

{
"name": "@chakra-ui/styled-system",
"version": "2.6.0",
"version": "2.6.1",
"description": "Style function for css-in-js building component libraries",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc