@mui/system 5.15.14 → 5.15.15

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,45 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## v5.15.15
4
+
5
+ <!-- generated comparing v5.15.14..master -->
6
+
7
+ _Apr 4, 2024_
8
+
9
+ A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
10
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
11
+
12
+ ### `@mui/material@5.15.15`
13
+
14
+ - [Autocomplete] Display options provided to the `options` prop even if loading is true (#41677) @ZeeshanTamboli
15
+ - [RadioGroup] Apply classnames (#41681) @ZeeshanTamboli
16
+
17
+ ### `@mui/system@5.15.15`
18
+
19
+ - Fix typo to avoid infinite recursion in function call (#41678) @ZeeshanTamboli
20
+
21
+ ### Docs
22
+
23
+ - [material-ui][Slider] Remove `valueLabelFormat` from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
24
+ - [material-ui] Remove deleted page from the sidenav (#41594) @danilo-leal
25
+ - [material-ui] Fix typo in CSS theme variables customization (#41680) @ZeeshanTamboli
26
+ - Continue migration of Base UI to sperate repository @oliviertassinari
27
+ - Add notification for MUI X v7 blog post (#41587) (#41605) @cherniavskii
28
+ - Update the versions dropdown to show v6 (#41557) @mnajdova
29
+
30
+ ### Core
31
+
32
+ - [blog] Link to Romain's blog post in MUI X v7 announcement post (#41641) @cherniavskii
33
+ - [blog] Blog post with MUI X v7.0.0 annoucement (#41563) (#41604) @cherniavskii
34
+ - [blog] Add post about remote (#41565) @danilo-leal
35
+ - [core] Continue rename of Toolpad @oliviertassinari
36
+ - [docs-infra] Add Toolpad product/category IDs to types (#41551) @bharatkashyap
37
+ - [website] Add Aarón to About Us (#41747) @aarongarciah
38
+ - [website] Add stray design adjustments throughout the site (#41642) @mnajdova
39
+ - [website] Update pricing table (#41606) @cherniavskii
40
+
41
+ All contributors of this release in alphabetical order: @aarongarciah, @bharatkashyap, @cherniavskii, @danilo-leal, @mnajdova, @oliviertassinari, @ZeeshanTamboli
42
+
3
43
  ## v5.15.14
4
44
 
5
45
  <!-- generated comparing v5.15.13..master -->
@@ -343,7 +343,7 @@ function emphasize(color, coefficient = 0.15) {
343
343
  }
344
344
  function private_safeEmphasize(color, coefficient, warning) {
345
345
  try {
346
- return private_safeEmphasize(color, coefficient);
346
+ return emphasize(color, coefficient);
347
347
  } catch (error) {
348
348
  if (warning && process.env.NODE_ENV !== 'production') {
349
349
  console.warn(warning);
@@ -316,7 +316,7 @@ export function emphasize(color, coefficient = 0.15) {
316
316
  }
317
317
  export function private_safeEmphasize(color, coefficient, warning) {
318
318
  try {
319
- return private_safeEmphasize(color, coefficient);
319
+ return emphasize(color, coefficient);
320
320
  } catch (error) {
321
321
  if (warning && process.env.NODE_ENV !== 'production') {
322
322
  console.warn(warning);
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v5.15.14
2
+ * @mui/system v5.15.15
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -324,7 +324,7 @@ export function emphasize(color) {
324
324
  }
325
325
  export function private_safeEmphasize(color, coefficient, warning) {
326
326
  try {
327
- return private_safeEmphasize(color, coefficient);
327
+ return emphasize(color, coefficient);
328
328
  } catch (error) {
329
329
  if (warning && process.env.NODE_ENV !== 'production') {
330
330
  console.warn(warning);
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v5.15.14
2
+ * @mui/system v5.15.15
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -316,7 +316,7 @@ export function emphasize(color, coefficient = 0.15) {
316
316
  }
317
317
  export function private_safeEmphasize(color, coefficient, warning) {
318
318
  try {
319
- return private_safeEmphasize(color, coefficient);
319
+ return emphasize(color, coefficient);
320
320
  } catch (error) {
321
321
  if (warning && process.env.NODE_ENV !== 'production') {
322
322
  console.warn(warning);
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v5.15.14
2
+ * @mui/system v5.15.15
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/system",
3
- "version": "5.15.14",
3
+ "version": "5.15.15",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.",
@@ -30,9 +30,9 @@
30
30
  "clsx": "^2.1.0",
31
31
  "csstype": "^3.1.3",
32
32
  "prop-types": "^15.8.1",
33
+ "@mui/utils": "^5.15.14",
33
34
  "@mui/private-theming": "^5.15.14",
34
35
  "@mui/types": "^7.2.14",
35
- "@mui/utils": "^5.15.14",
36
36
  "@mui/styled-engine": "^5.15.14"
37
37
  },
38
38
  "peerDependencies": {