@mui/styled-engine-sc 6.1.7 → 6.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## v6.1.8
4
+
5
+ <!-- generated comparing v6.1.7..master -->
6
+
7
+ _Nov 20, 2024_
8
+
9
+ A big thanks to the 10 contributors who made this release possible.
10
+
11
+ TODO INSERT HIGHLIGHTS
12
+
13
+ ### `@mui/material@6.1.8`
14
+
15
+ - [Autocomplete] Use `ul` element for the listbox (#44422) @DiegoAndai
16
+ - [Grid2] Remove item and zeroMinWidth classes from grid2Classes (#44419) @sai6855
17
+ - [StepIcon] Add SvgIconOwnProps type to StepIcon props (#44337) @sai6855
18
+ - Add generic back to `useMediaQuery` to prevent a breaking change (#44455) @siriwatknp
19
+ - [Tooltip] Deprecate `*Component` and `*Props` for v6 (#44350) @siriwatknp
20
+
21
+ ### `@mui/system@6.1.8`
22
+
23
+ - Warn when calling `setMode` without configuring `colorSchemeSelector` (#43783) @siriwatknp
24
+
25
+ ### `@mui/styled-engine@6.1.8`
26
+
27
+ - Add back removed internal function (#44421) @mnajdova
28
+
29
+ ### `@mui/utils@6.1.8`
30
+
31
+ - Skip deep clone React element (#44400) @siriwatknp
32
+ - Add documentation to `useForkRef` (#44410) @JCQuintas
33
+
34
+ ### Docs
35
+
36
+ - [Accordion] Replace hardcoded classes with constants in demos (#44453) @ZeeshanTamboli
37
+ - [material-ui][Autocomplete] Fix virtualization demo (#44382) @DiegoAndai
38
+ - Revert #44388 (#44454) @prakhargupta1
39
+ - Add App starters in related-projects.md (#44315) @oliviertassinari
40
+ - Bring back `*Component` and `*Props` codemods and deprecation messages (#44383) @DiegoAndai
41
+ - [docs] Copyedit Templates page (#44461) @samuelsycamore
42
+
43
+ ### Core
44
+
45
+ - Remove `stylis-plugin-rtl-sc` (#44447) @renovate[bot]
46
+ - [test][Autocomplete] Make virtualize regression screenshots deterministic (#44425) @DiegoAndai
47
+ - [blog] Fix reference to subdomain on MUI X v8 alpha zero post (#44416) @joserodolfofreitas
48
+ - [blog] MUI X v8 alpha zero blog post (#44377) @joserodolfofreitas
49
+ - [code-infra] Use vitest-compatible skip in `describeConformance` (#44412) @JCQuintas
50
+ - Keep OpenSSF badge up-to-date (aef2bf2) @oliviertassinari
51
+ - Polish useForkRef docs (#44424) @oliviertassinari
52
+ - [infra] Upgrade Cherry-pick workflow to latest (#44448) @oliviertassinari
53
+
54
+ All contributors of this release in alphabetical order: @DiegoAndai, @JCQuintas, @joserodolfofreitas, @mnajdova, @oliviertassinari, @prakhargupta1, @sai6855, samuelsycamore, @siriwatknp, @ZeeshanTamboli
55
+
3
56
  ## v6.1.7
4
57
 
5
58
  <!-- generated comparing v6.1.6..master -->
package/index.d.ts CHANGED
@@ -81,6 +81,14 @@ export function internal_mutateStyles(
81
81
  processor: (styles: any) => any,
82
82
  ): void;
83
83
 
84
+ // Not needed anymore, but fixes https://github.com/mui/material-ui/issues/44112
85
+ // TODO: Remove it in v7
86
+ // eslint-disable-next-line @typescript-eslint/naming-convention
87
+ export function internal_processStyles(
88
+ tag: React.ElementType,
89
+ processor: (styles: any) => any,
90
+ ): void;
91
+
84
92
  // eslint-disable-next-line @typescript-eslint/naming-convention
85
93
  export function internal_serializeStyles<P>(styles: Interpolation<P>): object;
86
94
 
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.1.7
2
+ * @mui/styled-engine-sc v6.1.8
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -44,6 +44,13 @@ export function internal_mutateStyles(tag, processor) {
44
44
  }
45
45
  }
46
46
 
47
+ // Not needed anymore, but fixes https://github.com/mui/material-ui/issues/44112
48
+ // TODO: Remove it in v7
49
+ // eslint-disable-next-line @typescript-eslint/naming-convention
50
+ export function internal_processStyles(tag, processor) {
51
+ return internal_mutateStyles(tag, processor);
52
+ }
53
+
47
54
  // eslint-disable-next-line @typescript-eslint/naming-convention
48
55
  export function internal_serializeStyles(styles) {
49
56
  return styles;
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.1.7
2
+ * @mui/styled-engine-sc v6.1.8
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -44,6 +44,13 @@ export function internal_mutateStyles(tag, processor) {
44
44
  }
45
45
  }
46
46
 
47
+ // Not needed anymore, but fixes https://github.com/mui/material-ui/issues/44112
48
+ // TODO: Remove it in v7
49
+ // eslint-disable-next-line @typescript-eslint/naming-convention
50
+ export function internal_processStyles(tag, processor) {
51
+ return internal_mutateStyles(tag, processor);
52
+ }
53
+
47
54
  // eslint-disable-next-line @typescript-eslint/naming-convention
48
55
  export function internal_serializeStyles(styles) {
49
56
  return styles;
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.1.7
2
+ * @mui/styled-engine-sc v6.1.8
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -38,6 +38,7 @@ Object.defineProperty(exports, "css", {
38
38
  });
39
39
  exports.default = styled;
40
40
  exports.internal_mutateStyles = internal_mutateStyles;
41
+ exports.internal_processStyles = internal_processStyles;
41
42
  exports.internal_serializeStyles = internal_serializeStyles;
42
43
  Object.defineProperty(exports, "keyframes", {
43
44
  enumerable: true,
@@ -86,6 +87,13 @@ function internal_mutateStyles(tag, processor) {
86
87
  }
87
88
  }
88
89
 
90
+ // Not needed anymore, but fixes https://github.com/mui/material-ui/issues/44112
91
+ // TODO: Remove it in v7
92
+ // eslint-disable-next-line @typescript-eslint/naming-convention
93
+ function internal_processStyles(tag, processor) {
94
+ return internal_mutateStyles(tag, processor);
95
+ }
96
+
89
97
  // eslint-disable-next-line @typescript-eslint/naming-convention
90
98
  function internal_serializeStyles(styles) {
91
99
  return styles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/styled-engine-sc",
3
- "version": "6.1.7",
3
+ "version": "6.1.8",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "styled() API wrapper package for styled-components.",