@mui/styled-engine-sc 6.0.0-beta.0 → 6.0.0-beta.1

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,37 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## v6.0.0-beta.1
4
+
5
+ <!-- generated comparing v6.0.0-beta.0..next -->
6
+
7
+ _Jul 16, 2024_
8
+
9
+ A big thanks to the 6 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.0.0-beta.1`
12
+
13
+ - &#8203;<!-- 03 -->Remove dependency on @mui/base (#42907) @mnajdova
14
+ - &#8203;<!-- 02 -->Set material-pigment-css to public (#42912) @siriwatknp
15
+
16
+ ### `@mui/codemod@6.0.0-beta.1`
17
+
18
+ - &#8203;<!-- 10 -->Support sx conditional inside spread element (#42894) @siriwatknp
19
+
20
+ ### Docs
21
+
22
+ - &#8203;<!-- 07 -->Fix 301 link @oliviertassinari
23
+ - &#8203;<!-- 04 -->[material-ui] Add script to generate template screenshots (#42903) @siriwatknp
24
+
25
+ ### Core
26
+
27
+ - &#8203;<!-- 09 -->[core] Remove custom hooks from the `mui-name-matches-component-name` linting rule (#42773) @flaviendelangle
28
+ - &#8203;<!-- 08 -->[core] Normalize rest / other to match the most common used @oliviertassinari
29
+ - &#8203;<!-- 06 -->[docs-infra] Move Ads component to TS (#42842) @alexfauquette
30
+ - &#8203;<!-- 05 -->[docs-infra] Support code tabs overflow (#42913) @arminmeh
31
+ - &#8203;<!-- 01 -->[website] Sync /about page @oliviertassinari
32
+
33
+ All contributors of this release in alphabetical order: @alexfauquette, @arminmeh, @flaviendelangle, @mnajdova, @oliviertassinari, @siriwatknp
34
+
3
35
  ## v6.0.0-beta.0
4
36
 
5
37
  <!-- generated comparing v6.0.0-alpha.14..next -->
package/index.d.ts CHANGED
@@ -254,14 +254,14 @@ export interface ThemedStyledFunctionBase<
254
254
  | TemplateStringsArray
255
255
  | CSSObject
256
256
  | InterpolationFunction<ThemedStyledProps<StyledComponentPropsWithRef<C> & O, T>>,
257
- ...rest: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O, T>>>
257
+ ...other: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O, T>>>
258
258
  ): StyledComponent<C, T, O, A>;
259
259
  <U extends object>(
260
260
  first:
261
261
  | TemplateStringsArray
262
262
  | CSSObject
263
263
  | InterpolationFunction<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>,
264
- ...rest: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>>
264
+ ...other: Array<Interpolation<ThemedStyledProps<StyledComponentPropsWithRef<C> & O & U, T>>>
265
265
  ): StyledComponent<C, T, O & U, A>;
266
266
  }
267
267
 
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.0.0-beta.0
2
+ * @mui/styled-engine-sc v6.0.0-beta.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.0.0-beta.0
2
+ * @mui/styled-engine-sc v6.0.0-beta.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine-sc v6.0.0-beta.0
2
+ * @mui/styled-engine-sc v6.0.0-beta.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/styled-engine-sc",
3
- "version": "6.0.0-beta.0",
3
+ "version": "6.0.0-beta.1",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "styled() API wrapper package for styled-components.",
@@ -26,7 +26,7 @@
26
26
  "url": "https://opencollective.com/mui-org"
27
27
  },
28
28
  "dependencies": {
29
- "@babel/runtime": "^7.24.7",
29
+ "@babel/runtime": "^7.24.8",
30
30
  "csstype": "^3.1.3",
31
31
  "hoist-non-react-statics": "^3.3.2",
32
32
  "prop-types": "^15.8.1"