Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement →
Sign In

@mui/styled-engine

Package Overview
Dependencies
Maintainers
11
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/styled-engine - npm Package Compare versions

Comparing version
7.3.8
to
7.3.9
+39
-0
CHANGELOG.md
# [Versions](https://mui.com/versions/)
## 7.3.9
<!-- generated comparing v7.3.8..v7.x -->
_Mar 5, 2026_
A big thanks to the 15 contributors who made this release possible.
### `@mui/material@7.3.9`
- Clean up duplicated CSS rules (#47893) @sai6855
- [theme] Generate `color-mix` value on top of default generated MaterialĀ UI CSS variables (#47791) @ZeeshanTamboli
- [tooltip] Fix error is thrown when wrapping an input which is disabled while focused (#47841) @ZeeshanTamboli
- [table cell][theme] Apply `alpha` before color mixing to border bottom color when nativeColor + cssVariables is used (#47840) @ZeeshanTamboli
### Docs
- Fix small typo in NumberField page (#47888) @arthur-plazanet
- Fix Theme builder video (#47855) @oliviertassinari
- Add updated community theme resource (#47853) @PeterTYLiu
- Fix the keyboard navigation in GroupedMenu example (#47848) @silviuaavram
- Few copy fixes (#47810) @pavan-sh
- Fix JSX in Overriding component structure docs (#47805) @ZeeshanTamboli
- Fix SSR flicker sentence grammar (#47794) @pavan-sh
- [system] Update sizing docs to clarify `(0, 1]` behavior. (#47851) @matthias-ccri
- [theme] Fix `nativeColor` docs (#47759) (#47789) @ZeeshanTamboli
### Core
- point v7 subdomain to MUIĀ X v7 docs (#113) @vmakhaev
- [blog] Blogpost for upcoming price changes for MUIĀ X (#47748) (#47910) @DanailH
- [blog] Company Update: What we've been working on (and why) (alethomas) (#47626) (#47908) @alelthomas
- [core] Update releaseChangelog.mjs (#47862) @mnajdova
- [code-infra] Detect browser envs that don't support layout (#47813) (#47873) @Janpot
- [code-infra] Enable undefined addition to optional properties (#47815) @brijeshb42
- [docs-infra] Reapply Cookie Banner with Design Fixes (#47744) @dav-is
All contributors of this release in alphabetical order: @alelthomas, @arthur-plazanet, @brijeshb42, @DanailH, @dav-is, @Janpot, @matthias-ccri, @mnajdova, @oliviertassinari, @pavan-sh, @PeterTYLiu, @sai6855, @silviuaavram, @vmakhaev, @ZeeshanTamboli
## 7.3.8

@@ -4,0 +43,0 @@

+1
-1
import * as React from 'react';
import { Interpolation } from '@emotion/react';
export interface GlobalStylesProps<Theme = {}> {
defaultTheme?: object;
defaultTheme?: object | undefined;
styles: Interpolation<Theme>;
}
export default function GlobalStyles<Theme = {}>(props: GlobalStylesProps<Theme>): React.JSX.Element;

@@ -23,4 +23,4 @@ import * as CSS from 'csstype';

styles: string;
map?: string;
next?: SerializedStyles;
map?: string | undefined;
next?: SerializedStyles | undefined;
}

@@ -77,3 +77,3 @@ export type CSSProperties = CSS.PropertiesFallback<number | string>;

} : any) => CSSObject);
}>;
}> | undefined;
}) | ArrayInterpolation<Props> | FunctionInterpolation<Props>;

@@ -84,5 +84,5 @@ export function shouldForwardProp(propName: PropertyKey): boolean;

export interface FilteringStyledOptions<Props, ForwardedProps extends keyof Props = keyof Props> {
label?: string;
label?: string | undefined;
shouldForwardProp?(propName: PropertyKey): propName is ForwardedProps;
target?: string;
target?: string | undefined;
}

@@ -118,6 +118,6 @@

<C extends React.ComponentClass<React.ComponentProps<C>>, ForwardedProps extends keyof React.ComponentProps<C> = keyof React.ComponentProps<C>>(component: C, options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps> & MuiStyledOptions): CreateStyledComponent<Pick<PropsOf<C>, ForwardedProps> & MUIStyledCommonProps, {}, {
ref?: React.Ref<InstanceType<C>>;
ref?: React.Ref<InstanceType<C>> | undefined;
}, Theme>;
<C extends React.ComponentClass<React.ComponentProps<C>>>(component: C, options?: StyledOptions<PropsOf<C> & MUIStyledCommonProps> & MuiStyledOptions): CreateStyledComponent<PropsOf<C> & MUIStyledCommonProps, {}, {
ref?: React.Ref<InstanceType<C>>;
ref?: React.Ref<InstanceType<C>> | undefined;
}, Theme>;

@@ -124,0 +124,0 @@ <C extends React.JSXElementConstructor<React.ComponentProps<C>>, ForwardedProps extends keyof React.ComponentProps<C> = keyof React.ComponentProps<C>>(component: C, options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps> & MuiStyledOptions): CreateStyledComponent<Pick<PropsOf<C>, ForwardedProps> & MUIStyledCommonProps, {}, {}, Theme>;

/**
* @mui/styled-engine v7.3.8
* @mui/styled-engine v7.3.9
*

@@ -4,0 +4,0 @@ * @license MIT

import * as React from 'react';
export interface StyledEngineProviderProps {
children?: React.ReactNode;
enableCssLayer?: boolean;
injectFirst?: boolean;
enableCssLayer?: boolean | undefined;
injectFirst?: boolean | undefined;
}
export default function StyledEngineProvider(props: StyledEngineProviderProps): React.JSX.Element;
import * as React from 'react';
import { Interpolation } from '@emotion/react';
export interface GlobalStylesProps<Theme = {}> {
defaultTheme?: object;
defaultTheme?: object | undefined;
styles: Interpolation<Theme>;
}
export default function GlobalStyles<Theme = {}>(props: GlobalStylesProps<Theme>): React.JSX.Element;

@@ -23,4 +23,4 @@ import * as CSS from 'csstype';

styles: string;
map?: string;
next?: SerializedStyles;
map?: string | undefined;
next?: SerializedStyles | undefined;
}

@@ -77,3 +77,3 @@ export type CSSProperties = CSS.PropertiesFallback<number | string>;

} : any) => CSSObject);
}>;
}> | undefined;
}) | ArrayInterpolation<Props> | FunctionInterpolation<Props>;

@@ -84,5 +84,5 @@ export function shouldForwardProp(propName: PropertyKey): boolean;

export interface FilteringStyledOptions<Props, ForwardedProps extends keyof Props = keyof Props> {
label?: string;
label?: string | undefined;
shouldForwardProp?(propName: PropertyKey): propName is ForwardedProps;
target?: string;
target?: string | undefined;
}

@@ -118,6 +118,6 @@

<C extends React.ComponentClass<React.ComponentProps<C>>, ForwardedProps extends keyof React.ComponentProps<C> = keyof React.ComponentProps<C>>(component: C, options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps> & MuiStyledOptions): CreateStyledComponent<Pick<PropsOf<C>, ForwardedProps> & MUIStyledCommonProps, {}, {
ref?: React.Ref<InstanceType<C>>;
ref?: React.Ref<InstanceType<C>> | undefined;
}, Theme>;
<C extends React.ComponentClass<React.ComponentProps<C>>>(component: C, options?: StyledOptions<PropsOf<C> & MUIStyledCommonProps> & MuiStyledOptions): CreateStyledComponent<PropsOf<C> & MUIStyledCommonProps, {}, {
ref?: React.Ref<InstanceType<C>>;
ref?: React.Ref<InstanceType<C>> | undefined;
}, Theme>;

@@ -124,0 +124,0 @@ <C extends React.JSXElementConstructor<React.ComponentProps<C>>, ForwardedProps extends keyof React.ComponentProps<C> = keyof React.ComponentProps<C>>(component: C, options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps> & MuiStyledOptions): CreateStyledComponent<Pick<PropsOf<C>, ForwardedProps> & MUIStyledCommonProps, {}, {}, Theme>;

/**
* @mui/styled-engine v7.3.8
* @mui/styled-engine v7.3.9
*

@@ -4,0 +4,0 @@ * @license MIT

{
"name": "@mui/styled-engine",
"version": "7.3.8",
"version": "7.3.9",
"author": "MUI Team",

@@ -5,0 +5,0 @@ "description": "styled() API wrapper package for emotion.",

import * as React from 'react';
export interface StyledEngineProviderProps {
children?: React.ReactNode;
enableCssLayer?: boolean;
injectFirst?: boolean;
enableCssLayer?: boolean | undefined;
injectFirst?: boolean | undefined;
}
export default function StyledEngineProvider(props: StyledEngineProviderProps): React.JSX.Element;