Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@mui/x-internals

Package Overview
Dependencies
Maintainers
16
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/x-internals - npm Package Compare versions

Comparing version
8.18.0
to
8.19.0
+5
-2
esm/store/useStoreEffect.js

@@ -34,4 +34,7 @@ import useLazyRef from '@mui/utils/useLazyRef';

const nextState = selector(state);
instance.effect(previousState, nextState);
previousState = nextState;
if (!Object.is(previousState, nextState)) {
const prev = previousState;
previousState = nextState;
instance.effect(prev, nextState);
}
});

@@ -38,0 +41,0 @@ },

{
"name": "@mui/x-internals",
"version": "8.18.0",
"version": "8.19.0",
"author": "MUI Team",

@@ -5,0 +5,0 @@ "description": "Utility functions for the MUI X packages (internal use only).",

@@ -41,4 +41,7 @@ "use strict";

const nextState = selector(state);
instance.effect(previousState, nextState);
previousState = nextState;
if (!Object.is(previousState, nextState)) {
const prev = previousState;
previousState = nextState;
instance.effect(prev, nextState);
}
}));

@@ -45,0 +48,0 @@ },

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