@mui/private-theming 5.8.6 โ†’ 5.9.0

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,130 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.9.0
4
+
5
+ <!-- generated comparing v5.8.7..master -->
6
+
7
+ _Jul 12, 2022_
8
+
9
+ A big thanks to the 19 contributors who made this release possible. Here are some highlights โœจ:
10
+
11
+ - ๐Ÿงช Exported Grid v2 as `Unstable_Grid2` (#33479) @siriwatknp
12
+ - ๐Ÿ“– Added a guide for using Joy UI and Material UI together (#33396) @siriwatknp
13
+ - ๐Ÿ› Fixed a few bugs in Material UI components. Thanks to @ZeeshanTamboli, @ivan-ngchakming, and @joebingham-wk.
14
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
15
+ - our documentation site is now running with React 18! (#33196) @mnajdova
16
+
17
+ ### `@mui/material@5.9.0`
18
+
19
+ - [CssBaseline] Fixes in overriding style (#33338) @ZeeshanTamboli
20
+ - [Autocomplete] Remove unnecessary `clsx` wrapper for single className (#33398) @ZeeshanTamboli
21
+ - [Grid] Export new grid as unstable (#33479) @siriwatknp
22
+ - [Tooltip] Fix children mouse over detection (#32321) @ivan-ngchakming
23
+ - [TypeScript] getCssVar autocomplete for Material UI (#33464) @siriwatknp
24
+ - [TypeScript] Fix theme options components types to use `Theme` (#33434) @siriwatknp
25
+ - [TypeScript] Reexports necessary types for module augmentation (#33397) @siriwatknp
26
+ - [ScopedCssBaseline] Add sx typings (#33474) @joebingham-wk
27
+
28
+ ### `@mui/system@5.9.0`
29
+
30
+ - [System] Add offset feature to Grid (#33415) @siriwatknp
31
+ - [system] Add new `Grid` implementation (#32746) @siriwatknp
32
+
33
+ ### `@mui/lab@5.0.0-alpha.90`
34
+
35
+ - [lab] Remove the pickers (#33386) @flaviendelangle
36
+ - [Masonry] Support `rem`/`em` values for `spacing` prop (#33384) @hbjORbj
37
+
38
+ ### `@mui/base@5.0.0-alpha.89`
39
+
40
+ - Base] Change the order of class names merged in useSlotProps (#33383) @michaldudak
41
+ - [ModalUnstyled] Accept callbacks in componentsProps (#33181) @michaldudak
42
+ - [SelectUnstyled] Accept callbacks in componentsProps (#33197) @michaldudak
43
+ - [TabsUnstyled] Accept callbacks in componentsProps (#33284) @michaldudak
44
+
45
+ ### `@mui/joy@5.0.0-alpha.36`
46
+
47
+ - [Joy] Add guide about using Joy and Material UI together (#33396) @siriwatknp
48
+ - [Joy] Fix variants color palette regressions (#33394) @danilo-leal
49
+
50
+ ### Docs
51
+
52
+ - [docs] Correcting small grammatical error (#33393) @robyyo
53
+ - [docs] Link to the correct package on Joy component pages (#33439) @cherniavskii
54
+ - [docs] Fix e2e tests (#33477) @siriwatknp
55
+ - [docs] Fix dead links (#33462) @oliviertassinari
56
+ - [docs] Cleanup the migration (#33463) @siriwatknp
57
+ - [docs] Fix broken Sponsoring services links @samuelsycamore
58
+ - [docs] Improve repo README with light/dark logos, relative links and more (#33356) @samuelsycamore
59
+ - [docs] Update links to MUI X Overview and Introduction pages (#33201) @samuelsycamore
60
+ - [docs] Update to React 18 (#33196) @mnajdova
61
+ - [docs] Simplify "Upload button" demo (#33326) @baharalidurrani
62
+ - [docs] Add "refine" demo to showcase (#33240) @omeraplak
63
+ - [docs] Add webpack alias for legacy utils package (#33376) @jgbae
64
+ - [docs] Improve external link icons synonyms (#33257) @davidgarciab
65
+ - [examples] Update MUI Base with Tailwind CSS to use the latest versions of the dependencies (#33401) @mnajdova
66
+ - [examples] Add MUI base example (#33154) @siriwatknp
67
+
68
+ ### Core
69
+
70
+ - [core] Fix @mui/monorepo regression for the import of the docs infra (#33390) @Janpot
71
+ - [core] Remove old babel resolve rule (#33432) @oliviertassinari
72
+ - [website] Shorten the plan descriptions on the pricing page (#32984) @joserodolfofreitas
73
+ - [website] Link EULA in the license quantity section (#33292) @oliviertassinari
74
+
75
+ All contributors of this release in alphabetical order: @baharalidurrani, @cherniavskii, @danilo-leal, @davidgarciab, @flaviendelangle, @hbjORbj, @ivan-ngchakming, @Janpot, @jgbae, @joebingham-wk, @joserodolfofreitas, @michaldudak, @mnajdova, @oliviertassinari, @omeraplak, @robyyo, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
76
+
77
+ ## 5.8.7
78
+
79
+ <!-- generated comparing v5.8.6..master -->
80
+
81
+ _Jul 4, 2022_
82
+
83
+ A big thanks to the 13 contributors who made this release possible. Here are some highlights โœจ:
84
+
85
+ - ๐Ÿ› Fixed an issue causing Typescript errors when building a project with Material UI v5.8.6 (@michaldudak)
86
+ - ๐Ÿ› Fixed a few bugs in Material UI components. Thanks @henriqueholtz, @jake-collibra, @MattiasMartens and @TimoWilhelm!
87
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
88
+
89
+ ### `@mui/material@5.8.7`
90
+
91
+ - [Autocomplete] Add some missing props in `useAutocomplete` (#33269) @henriqueholtz
92
+ - [Autocomplete] Extend `componentsProps` to include `popper` and `popupIndicator` slots (#33283) @jake-collibra
93
+ - [Select] Annotate empty string as valid value prop (#33088) @MattiasMartens
94
+ - [SnackbarContent] Fix message text color with css var provider (#33285) @TimoWilhelm
95
+
96
+ ### `@mui/styled-engine@5.8.7`
97
+
98
+ - [styled-engine] Add missing type dependency on csstype (#33310) @Methuselah96
99
+
100
+ ### `@mui/system@5.8.7`
101
+
102
+ - [system] Simplify theme input types for `CssVarsProvider` (#33381) @siriwatknp
103
+ - [system] Export required types (#33324) @michaldudak
104
+
105
+ ### `@mui/joy@5.0.0-alpha.35`
106
+
107
+ - [Joy] Add radio button documentation (#33254) @siriwatknp
108
+ - [Joy] Add switch documentation (#33302) @siriwatknp
109
+ - [Joy] Batch a couple of documentation refinements (#33158)
110
+ - [Joy] Enable Joy and Material UI compatibility (#33379) @siriwatknp
111
+
112
+ ### `@mui/base@5.0.0-alpha.88`
113
+
114
+ - [base] Remove a type incompatible with Typescript 3.5 (#33361) @michaldudak
115
+ - [BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error (#33314) @aaronlademann-wf
116
+ - [TablePaginationUnstyled] Accept callbacks in componentsProps (#33309) @michaldudak
117
+
118
+ ### Docs
119
+
120
+ - [docs] Fix Link typings in the react-router example (#32308) @aaarichter
121
+ - [docs] Add caveat about class components with Tooltip (#33325) @joshkel
122
+ - [docs] Fix SEO issues (#33288) @oliviertassinari
123
+ - [docs] Fix Slider's "player" demo (#33267) @xlianghang
124
+ - [website] Link MUI Toolpad in mui.com (#33287) @oliviertassinari
125
+
126
+ All contributors of this release in alphabetical order: @aaarichter, @aaronlademann-wf, @danilo-leal, @henriqueholtz, @jake-collibra, @joshkel, @MattiasMartens, @Methuselah96, @michaldudak, @oliviertassinari, @siriwatknp, @TimoWilhelm, @xlianghang
127
+
3
128
  ## 5.8.6
4
129
 
5
130
  <!-- generated comparing v5.8.5..master -->
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.6
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.6
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.6
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.6
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/private-theming",
3
- "version": "5.8.6",
3
+ "version": "5.9.0",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@babel/runtime": "^7.17.2",
39
- "@mui/utils": "^5.8.6",
39
+ "@mui/utils": "^5.9.0",
40
40
  "prop-types": "^15.8.1"
41
41
  },
42
42
  "sideEffects": false,