New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@material-ui/system

Package Overview
Dependencies
Maintainers
7
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material-ui/system - npm Package Compare versions

Comparing version 4.7.1 to 4.9.1

es/grid.js

2

es/index.js

@@ -9,2 +9,4 @@ export { default as borders } from './borders';

export * from './flexbox';
export { default as grid } from './grid';
export * from './grid';
export { default as palette } from './palette';

@@ -11,0 +13,0 @@ export * from './palette';

4

esm/index.js

@@ -1,2 +0,2 @@

/** @license Material-UI v4.7.1
/** @license Material-UI v4.9.1
*

@@ -14,2 +14,4 @@ * This source code is licensed under the MIT license found in the

export * from './flexbox';
export { default as grid } from './grid';
export * from './grid';
export { default as palette } from './palette';

@@ -16,0 +18,0 @@ export * from './palette';

@@ -67,2 +67,3 @@ import * as CSS from 'csstype';

// flexbox.js
export const flexbox: SimpleStyleFunction<

@@ -85,2 +86,19 @@ | 'flexBasis'

// grid.js
export const grid: SimpleStyleFunction<
| 'gridGap'
| 'gridColumnGap'
| 'gridRowGap'
| 'gridColumn'
| 'gridRow'
| 'gridAutoFlow'
| 'gridAutoColumns'
| 'gridAutoRows'
| 'gridTemplateColumns'
| 'gridTemplateRows'
| 'gridTemplateAreas'
| 'gridArea'
>;
export type GridProps = PropsFor<typeof grid>;
// palette.js

@@ -87,0 +105,0 @@ export const color: SimpleStyleFunction<'color'>;

@@ -1,2 +0,2 @@

/** @license Material-UI v4.7.1
/** @license Material-UI v4.9.1
*

@@ -22,2 +22,3 @@ * This source code is licensed under the MIT license found in the

flexbox: true,
grid: true,
palette: true,

@@ -67,2 +68,8 @@ positions: true,

});
Object.defineProperty(exports, "grid", {
enumerable: true,
get: function get() {
return _grid.default;
}
});
Object.defineProperty(exports, "palette", {

@@ -145,2 +152,15 @@ enumerable: true,

var _grid = _interopRequireWildcard(require("./grid"));
Object.keys(_grid).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function get() {
return _grid[key];
}
});
});
var _palette = _interopRequireWildcard(require("./palette"));

@@ -147,0 +167,0 @@

{
"name": "@material-ui/system",
"version": "4.7.1",
"version": "4.9.1",
"private": false,

@@ -30,5 +30,11 @@ "author": "Material-UI Team",

"peerDependencies": {
"@types/react": "^16.8.6",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {

@@ -35,0 +41,0 @@ "@babel/runtime": "^7.4.4",

Sorry, the diff of this file is too big to display

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