Socket
Socket
Sign inDemoInstall

material-ui-popup-state

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

material-ui-popup-state - npm Package Compare versions

Comparing version 5.0.3 to 5.0.4

4

package.json
{
"name": "material-ui-popup-state",
"version": "5.0.3",
"version": "5.0.4",
"description": "easiest way to create menus, popovers, and poppers with material-ui",

@@ -61,3 +61,3 @@ "main": "index.js",

"build:demo": "rimraf demo-dist && cross-env NODE_ENV=production BABEL_ENV=es5 webpack --config demo/webpack.config.js && (cd demo; copy index.html ../demo-dist/) && copy .circleci/config.yml demo-dist/",
"predeploy": "yarn build:demo",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d demo-dist --dotfiles"

@@ -64,0 +64,0 @@ },

@@ -12,2 +12,7 @@ "use strict";

function useEvent(handler) {
if (typeof window === 'undefined') {
// useLayoutEffect doesn't work on the server side, don't bother
// trying to make callback functions stable
return handler;
}
var handlerRef = React.useRef(null);

@@ -14,0 +19,0 @@ React.useLayoutEffect(function () {

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