@mui/docs 6.0.0-alpha.0 → 6.0.0-alpha.10

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.
Files changed (106) hide show
  1. package/CHANGELOG.md +591 -6
  2. package/CodeCopy/CodeCopy.d.ts +20 -0
  3. package/CodeCopy/CodeCopy.js +172 -0
  4. package/CodeCopy/CodeCopyButton.d.ts +5 -0
  5. package/CodeCopy/CodeCopyButton.js +41 -0
  6. package/CodeCopy/index.d.ts +3 -0
  7. package/CodeCopy/index.js +3 -0
  8. package/CodeCopy/package.json +6 -0
  9. package/CodeCopy/useClipboardCopy.d.ts +4 -0
  10. package/CodeCopy/useClipboardCopy.js +21 -0
  11. package/ComponentLinkHeader/ComponentLinkHeader.d.ts +9 -0
  12. package/ComponentLinkHeader/ComponentLinkHeader.js +179 -0
  13. package/ComponentLinkHeader/index.d.ts +2 -0
  14. package/ComponentLinkHeader/index.js +2 -0
  15. package/ComponentLinkHeader/package.json +6 -0
  16. package/HighlightedCode/HighlightedCode.d.ts +14 -0
  17. package/HighlightedCode/HighlightedCode.js +68 -0
  18. package/HighlightedCode/index.d.ts +1 -0
  19. package/HighlightedCode/index.js +1 -0
  20. package/HighlightedCode/package.json +6 -0
  21. package/InfoCard/InfoCard.d.ts +20 -0
  22. package/InfoCard/InfoCard.js +87 -0
  23. package/InfoCard/index.d.ts +1 -0
  24. package/InfoCard/index.js +1 -0
  25. package/InfoCard/package.json +6 -0
  26. package/Link/Link.js +40 -38
  27. package/MarkdownElement/MarkdownElement.d.ts +6 -0
  28. package/MarkdownElement/MarkdownElement.js +825 -0
  29. package/MarkdownElement/index.d.ts +1 -0
  30. package/MarkdownElement/index.js +1 -0
  31. package/MarkdownElement/package.json +6 -0
  32. package/NProgressBar/NProgressBar.js +6 -7
  33. package/SectionTitle/SectionTitle.d.ts +7 -0
  34. package/SectionTitle/SectionTitle.js +30 -0
  35. package/SectionTitle/index.d.ts +1 -0
  36. package/SectionTitle/index.js +1 -0
  37. package/SectionTitle/package.json +6 -0
  38. package/branding/BrandingProvider.d.ts +9 -0
  39. package/branding/BrandingProvider.js +17 -0
  40. package/branding/brandingTheme.d.ts +152 -0
  41. package/branding/brandingTheme.js +1346 -0
  42. package/branding/index.d.ts +2 -0
  43. package/branding/index.js +2 -0
  44. package/branding/package.json +6 -0
  45. package/node/CodeCopy/CodeCopy.js +188 -0
  46. package/node/CodeCopy/CodeCopyButton.js +50 -0
  47. package/node/CodeCopy/index.js +40 -0
  48. package/node/CodeCopy/useClipboardCopy.js +30 -0
  49. package/node/ComponentLinkHeader/ComponentLinkHeader.js +189 -0
  50. package/node/ComponentLinkHeader/index.js +24 -0
  51. package/node/HighlightedCode/HighlightedCode.js +77 -0
  52. package/node/HighlightedCode/index.js +16 -0
  53. package/node/InfoCard/InfoCard.js +97 -0
  54. package/node/InfoCard/index.js +16 -0
  55. package/node/Link/Link.js +43 -40
  56. package/node/MarkdownElement/MarkdownElement.js +837 -0
  57. package/node/MarkdownElement/index.js +16 -0
  58. package/node/NProgressBar/NProgressBar.js +6 -7
  59. package/node/SectionTitle/SectionTitle.js +38 -0
  60. package/node/SectionTitle/index.js +16 -0
  61. package/node/branding/BrandingProvider.js +25 -0
  62. package/node/branding/brandingTheme.js +1357 -0
  63. package/node/branding/index.js +27 -0
  64. package/node/svgIcons/AdobeXDIcon.js +22 -0
  65. package/node/svgIcons/BundleSizeIcon.js +22 -0
  66. package/node/svgIcons/FigmaIcon.js +31 -0
  67. package/node/svgIcons/FileDownload.js +3 -3
  68. package/node/svgIcons/JavaScript.js +3 -3
  69. package/node/svgIcons/MaterialDesignIcon.js +27 -0
  70. package/node/svgIcons/SketchIcon.js +36 -0
  71. package/node/svgIcons/TypeScript.js +3 -3
  72. package/node/svgIcons/W3CIcon.js +24 -0
  73. package/node/translations/translations.json +216 -0
  74. package/package.json +11 -8
  75. package/svgIcons/AdobeXDIcon.d.ts +4 -0
  76. package/svgIcons/AdobeXDIcon.js +14 -0
  77. package/svgIcons/BundleSizeIcon.d.ts +4 -0
  78. package/svgIcons/BundleSizeIcon.js +14 -0
  79. package/svgIcons/FigmaIcon.d.ts +4 -0
  80. package/svgIcons/FigmaIcon.js +23 -0
  81. package/svgIcons/FileDownload.d.ts +7 -0
  82. package/svgIcons/FileDownload.js +3 -3
  83. package/svgIcons/JavaScript.d.ts +7 -0
  84. package/svgIcons/JavaScript.js +3 -3
  85. package/svgIcons/MaterialDesignIcon.d.ts +4 -0
  86. package/svgIcons/MaterialDesignIcon.js +19 -0
  87. package/svgIcons/SketchIcon.d.ts +4 -0
  88. package/svgIcons/SketchIcon.js +28 -0
  89. package/svgIcons/TypeScript.d.ts +7 -0
  90. package/svgIcons/TypeScript.js +3 -3
  91. package/svgIcons/W3CIcon.d.ts +4 -0
  92. package/svgIcons/W3CIcon.js +16 -0
  93. package/translations/translations.json +4 -2
  94. package/tsconfig.build.tsbuildinfo +1 -1
  95. package/legacy/DocsProvider/DocsProvider.js +0 -25
  96. package/legacy/DocsProvider/index.js +0 -1
  97. package/legacy/Link/Link.js +0 -101
  98. package/legacy/Link/index.js +0 -1
  99. package/legacy/NProgressBar/NProgressBar.js +0 -80
  100. package/legacy/NProgressBar/index.js +0 -1
  101. package/legacy/i18n/i18n.js +0 -105
  102. package/legacy/i18n/index.js +0 -1
  103. package/legacy/svgIcons/FileDownload.js +0 -14
  104. package/legacy/svgIcons/JavaScript.js +0 -14
  105. package/legacy/svgIcons/TypeScript.js +0 -14
  106. package/legacy/translations/index.js +0 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,550 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## v6.0.0-alpha.10
4
+
5
+ <!-- generated comparing v6.0.0-alpha.9..next -->
6
+
7
+ _Jun 4, 2024_
8
+
9
+ A big thanks to the 7 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.0.0-alpha.10`
12
+
13
+ - &#8203;<!-- 26 -->[Backdrop] Deprecate `components` and `componentsProps` (#42468) @DiegoAndai
14
+ - &#8203;<!-- 25 -->[Collapse] Bound max transition time (#42390) @oliviertassinari
15
+ - &#8203;<!-- 12 -->[FilledInput] Remove unapplied classes from filledInputClasses interface and add missing classes to root (#42082) @sai6855
16
+ - &#8203;<!-- 11 -->[InputBase] Deprecate components and componentProps props for v6 (#42093) @ChronicusUA
17
+ - &#8203;<!-- 10 -->Remove remaining IE11 code (#42283) @DiegoAndai
18
+ - &#8203;<!-- 09 -->[Modal] Deprecate `components` and `componentsProps` (#42469) @DiegoAndai
19
+ - &#8203;<!-- 08 -->[Popover] Migrate useSlotProps to useSlot (#42369) @sai6855
20
+ - &#8203;<!-- 07 -->[useMediaQuery] Remove unused useMediaQueryTheme (#42367) @aarongarciah
21
+
22
+ ### `@mui/system@6.0.0-alpha.10`
23
+
24
+ - &#8203;<!-- 06 -->Remove IE11 code (#42436) @DiegoAndai
25
+
26
+ ### Docs
27
+
28
+ - &#8203;<!-- 23 -->Reflect Base UI and MUI System in a different repository @oliviertassinari
29
+ - &#8203;<!-- 22 -->Update twitter.com to x.com @oliviertassinari
30
+ - &#8203;<!-- 21 -->Simplify Example projects page @oliviertassinari
31
+ - &#8203;<!-- 17 -->[icons] Update README and docs page (#41938) @danilo-leal
32
+ - &#8203;<!-- 16 -->[material-ui] Add changelog section to the design kits page (#42449) @danilo-leal
33
+ - &#8203;<!-- 15 -->[material-ui] Fix sentence in the All components page (#42336) @danilo-leal
34
+ - &#8203;<!-- 14 -->[material-ui] Update Figma design kit doc redirect link (#42448) @danilo-leal
35
+ - &#8203;<!-- 13 -->[system] Add "dynamic values" section to sx prop page (#42239) @aarongarciah
36
+
37
+ ### Core
38
+
39
+ - &#8203;<!-- 20 -->[docs-infra] Update the OG card image design (#42470) @danilo-leal
40
+ - &#8203;<!-- 19 -->[docs-infra] Add small design polish (#42455) @danilo-leal
41
+ - &#8203;<!-- 18 -->[docs-infra] Update the Material logo + add copy functionality (#42435) @danilo-leal
42
+ - &#8203;<!-- 05 -->[website] Update DoiT description and link in Sponsors section (#42505) @erezstmn-doit
43
+ - &#8203;<!-- 04 -->[website] Clean up the docs-infra job ad (#42504) @danilo-leal
44
+ - &#8203;<!-- 03 -->[website] Fix FlashCode position (#42139) @oliviertassinari
45
+ - &#8203;<!-- 02 -->[website] Open Docs-infra engineer role (#42101) @danilo-leal
46
+ - &#8203;<!-- 01 -->[website] Fix locationCountry in about page @oliviertassinari
47
+
48
+ All contributors of this release in alphabetical order: @aarongarciah, @ChronicusUA, @danilo-leal, @DiegoAndai, @erezstmn-doit, @oliviertassinari, @sai6855
49
+
50
+ ## v6.0.0-alpha.9
51
+
52
+ <!-- generated comparing v6.0.0-alpha.8..next -->
53
+
54
+ _May 29, 2024_
55
+
56
+ A big thanks to the 23 contributors who made this release possible. Here are some highlights ✨:
57
+
58
+ - 🚀 `CssVarsProvider` and `extendTheme` are now stable (#42246) @siriwatknp
59
+
60
+ ### `@mui/material@6.0.0-alpha.9`
61
+
62
+ - &#8203;<!-- 49 -->[AlertTitle] Enable extending Typography props (#42269) @lucasgmelo
63
+ - &#8203;<!-- 48 -->[AvatarGroup] deprecate `componentsProps` for v6 (#42122) @lhilgert9
64
+ - &#8203;<!-- 15 -->[Grid] Deprecate `wrap` prop (#42363) @fedirjh
65
+ - &#8203;<!-- 14 -->[ListItem] Document `*Component` and `*Props` props deprecations (#42263) @aarongarciah
66
+ - &#8203;<!-- 13 -->[ListItem] Deprecate ListItem's components and componentsProps (#42219) @aarongarciah
67
+ - &#8203;<!-- 12 -->[ListItemSecondaryAction] Deprecate component (#42251) @aarongarciah
68
+ - &#8203;<!-- 11 -->Stabilize `CssVarsProvider` and `extendTheme` (#42246) @siriwatknp
69
+ - &#8203;<!-- 10 -->[Popper] Deprecate components and componentProps props for v6 (#42111) @ChronicusUA
70
+ - &#8203;<!-- 09 -->[responsiveFontSizes] Handled undefined variants (#42412) @brijeshb42
71
+ - &#8203;<!-- 08 -->[Slider] Fix wrong CSS value (#42370) @mnajdova
72
+ - &#8203;<!-- 07 -->[Tooltip] Deprecate components and componentProps props for v6 (#42107) @ChronicusUA
73
+
74
+ ### `@mui/system@6.0.0-alpha.9`
75
+
76
+ - &#8203;<!-- 34 -->[createStyled] Intercept `ownerState` coming from `props` and `ownerState` (#42358) @DiegoAndai
77
+
78
+ ### `@mui/codemod@6.0.0-alpha.9`
79
+
80
+ - &#8203;<!-- 41 -->Add `sx` prop for v6 migration (#42153) @siriwatknp
81
+ - &#8203;<!-- 40 -->Add codemod for removing system props (#42282) @siriwatknp
82
+
83
+ ### Docs
84
+
85
+ - &#8203;<!-- 33 -->Remove unused images (#42324) @danilo-leal
86
+ - &#8203;<!-- 32 -->Add Pigment CSS and Base UI logos SVGs (#42322) @danilo-leal
87
+ - &#8203;<!-- 22 -->[joy-ui] Fix template responsiveness (#42422) @j4marcos
88
+ - &#8203;<!-- 21 -->[material-ui] Add the Pashto locale (#42244) @sayoubiaf
89
+ - &#8203;<!-- 20 -->[material-ui] Remove duplicate Design Kits page (#42338) @danilo-leal
90
+ - &#8203;<!-- 19 -->[material-ui] Document callback to access theme in GlobalStyles (#42257) @aarongarciah
91
+ - &#8203;<!-- 18 -->[material-ui] Add minor modifications to the Vertical stepper demo (#42342) @mihilt
92
+ - &#8203;<!-- 17 -->[material-ui][Tabs] Improve the Basic Tabs demo (#42374) @MatheusEli
93
+ - &#8203;<!-- 16 -->[pigment-css] Polish redirection mention @oliviertassinari
94
+
95
+ ### Core
96
+
97
+ - &#8203;<!-- 47 -->[blog] Add fixes and clean ups to the Blog page (#42311) @danilo-leal
98
+ - &#8203;<!-- 46 -->[blog] Add the "Product" tag to the Pigment CSS post (#42365) @danilo-leal
99
+ - &#8203;<!-- 45 -->[code-infra] Simplify .stylelintrc.js @oliviertassinari
100
+ - &#8203;<!-- 44 -->[code-infra] Fix stylelint locally (#42411) @oliviertassinari
101
+ - &#8203;<!-- 43 -->[code-infra] Run corepack enable on all CI jobs (#42331) @Janpot
102
+ - &#8203;<!-- 42 -->[code-infra] Create examples eslint rule (#42170) @oliviertassinari
103
+ - &#8203;<!-- 39 -->[core] Apply React 19 type changes that don't require upcoming `@types/` packages (#42346) @DiegoAndai
104
+ - &#8203;<!-- 38 -->[core] Remove `react-swipeable-views-utils` package from docs (#42378) @ZeeshanTamboli
105
+ - &#8203;<!-- 37 -->[core] Update `@testing-library/react` and `@testing-library/dom` packages (#42349) @ZeeshanTamboli
106
+ - &#8203;<!-- 36 -->[core] Remove `@types/prettier` package (#42339) @ZeeshanTamboli
107
+ - &#8203;<!-- 35 -->[core] Remove `WyW-in-JS` from Renovate config (#42335) @ZeeshanTamboli
108
+ - &#8203;<!-- 31 -->[docs-infra] Split feedback channels per product (#42413) @alexfauquette
109
+ - &#8203;<!-- 30 -->[docs-infra] Avoid cryptic errors when tests don't exist (#42356) @Janpot
110
+ - &#8203;<!-- 29 -->[docs-infra] Make menu styles consistent (#42387) @danilo-leal
111
+ - &#8203;<!-- 28 -->[docs-infra] Display deprecation messages in API pages (#42352) @aarongarciah
112
+ - &#8203;<!-- 27 -->[docs-infra] Standardize API pages Alert styles (#42386) @danilo-leal
113
+ - &#8203;<!-- 26 -->[docs-infra] Fix Toolpad Core API links (#42362) @apedroferreira
114
+ - &#8203;<!-- 25 -->[docs-infra] Tigthen up the header design (#42180) @danilo-leal
115
+ - &#8203;<!-- 24 -->[docs-infra] Add Toolpad to muiNpmOrgs for codesandbox demos (#42316) @Janpot
116
+ - &#8203;<!-- 23 -->[docs-infra] Allow JSDoc tags (#42337) @aarongarciah
117
+ - &#8203;<!-- 06 -->[test] Remove `userAgent` override in `jsdom` env (#42344) @cherniavskii
118
+ - &#8203;<!-- 05 -->[utils] Fix GitHub-reported prototype pollution vulnerability in `deepmerge` (#41652) @tjcouch-sil
119
+ - &#8203;<!-- 04 -->[website] Add Nikita to the about page (#42418) @nikitaa24
120
+ - &#8203;<!-- 03 -->[website] Fix hero spacing changes applying at the wrong breakpoint (#42341) @KenanYusuf
121
+ - &#8203;<!-- 02 -->[website] Adds Kenan Yusuf to about page (#42317) @KenanYusuf
122
+ - &#8203;<!-- 01 -->[website] Improve about page @oliviertassinari
123
+
124
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @apedroferreira, @brijeshb42, @cherniavskii, @ChronicusUA, @danilo-leal, @DiegoAndai, @fedirjh, @j4marcos, @Janpot, @KenanYusuf, @lhilgert9, @lucasgmelo, @MatheusEli, @mihilt, @mnajdova, @nikitaa24, @oliviertassinari, @sayoubiaf, @siriwatknp, @tjcouch-sil, @ZeeshanTamboli
125
+
126
+ ## v6.0.0-alpha.8
127
+
128
+ <!-- generated comparing v6.0.0-alpha.7..next -->
129
+
130
+ _May 21, 2024_
131
+
132
+ A big thanks to the 7 contributors who made this release possible.
133
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
134
+
135
+ ### `@mui/material@6.0.0-alpha.7`
136
+
137
+ - &#8203;<!-- 04 -->[material-ui] Filter only valid theme palette for generating styles (#42147) @siriwatknp
138
+ - &#8203;<!-- 03 -->[material-ui] Remove UMD bundle (#42172) @ZeeshanTamboli
139
+ - &#8203;<!-- 02 -->[material-ui][TextField] Deprecate `*Props` props (#42062) @DiegoAndai
140
+
141
+ ### Docs
142
+
143
+ - &#8203;<!-- 08 -->[docs] Remove Base UI from the README (#42307) @danilo-leal
144
+ - &#8203;<!-- 07 -->[docs][material-ui] Fix typo in style interoperability with Tailwind CSS docs (#42279) @ZeeshanTamboli
145
+ - &#8203;<!-- 06 -->[docs][material-ui] Add supported browsers section to migration guide (#42194) @DiegoAndai
146
+ - &#8203;<!-- 05 -->[docs][material-ui][Pagination] Clarify pagination `page` prop API (#42220) @Mandar-Pandya
147
+
148
+ ### Core
149
+
150
+ - &#8203;<!-- 12 -->[blog] Update blog post OG image (#42270) @danilo-leal
151
+ - &#8203;<!-- 11 -->[blog] Update Pigment CSS post (#42266) @danilo-leal
152
+ - &#8203;<!-- 10 -->[docs] Remove LocalMonero (#42224) @oliviertassinari
153
+ - &#8203;<!-- 08 -->[docs-infra] Fix keyboard navigation on page tabs (#42152) @danilo-leal
154
+ - &#8203;<!-- 10 -->[code-infra] Remove raw-loader (#42275) @Janpot
155
+ - &#8203;<!-- 09 -->[core] Remove outdated Babel plugins (#42140) @ZeeshanTamboli
156
+ - &#8203;<!-- 12 -->[core] Fix a few more key spread issues (#42168) @oliviertassinari
157
+ - &#8203;<!-- 01 -->[website] Avoid duplicate simple vs. rich (#42100) @oliviertassinari
158
+
159
+ All contributors of this release in alphabetical order: @danilo-leal, @DiegoAndai, @Janpot, @Mandar-Pandya, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
160
+
161
+ ## v6.0.0-alpha.7
162
+
163
+ <!-- generated comparing v6.0.0-alpha.6..next -->
164
+
165
+ _May 16, 2024_
166
+
167
+ A big thanks to the 14 contributors who made this release possible.
168
+
169
+ ### `@mui/material@6.0.0-alpha.7`
170
+
171
+ - &#8203;<!-- 23 -->[Autocomplete] Deprecate `componentsProps` props (#42179) @lhilgert9
172
+ - &#8203;<!-- 22 -->[Autocomplete] Improve design when there's a start adornment for small autocomplete (#41781) @TahaRhidouani
173
+ - &#8203;<!-- 21 -->[Autocomplete] deprecate `*Component` and `*Props` for v6 (#41875) @lhilgert9
174
+ - &#8203;<!-- 19 -->[CircularProgress] Deprecate composed classes (#42076) @sai6855
175
+ - &#8203;<!-- 05 -->[ToggleButtonGroup] Add missing `selected` class in ToggleButtonGroupClasses type (#42243) @tarunrajput
176
+
177
+ ### `@mui/codemod@6.0.0-alpha.6`
178
+
179
+ - &#8203;<!-- 18 -->[Divider] Only apply codemod if light prop is present (#42098) @DiegoAndai
180
+
181
+ ### Docs
182
+
183
+ - &#8203;<!-- 13 -->Fix 301 to Figma @oliviertassinari
184
+ - &#8203;<!-- 12 -->Fix use of deprecated React API (#42118) @oliviertassinari
185
+ - &#8203;<!-- 11 -->Remove the Base notification (#42191) @danilo-leal
186
+ - &#8203;<!-- 07 -->[material-ui] Improve descriptions for deprecated props (#42221) @aarongarciah
187
+ - &#8203;<!-- 06 -->[material-ui] Fix typo in composition docs (#42195) @aarongarciah
188
+
189
+ ### Core
190
+
191
+ - &#8203;<!-- 20 -->[blog] Introducing Pigment CSS blog post (#42198) @samuelsycamore
192
+ - &#8203;<!-- 17 -->[core] Remove confusing comment @oliviertassinari
193
+ - &#8203;<!-- 16 -->[core] Match other repositories and convention @oliviertassinari
194
+ - &#8203;<!-- 15 -->[core] Fix React 18.3 warnings about spreading keys in the Material UI `Autocomplete` component (#42099) @heath-freenome
195
+ - &#8203;<!-- 14 -->[core] Remove unecessary quotes @oliviertassinari
196
+ - &#8203;<!-- 10 -->[docs-infra] Share code for section title (#42236) @alexfauquette
197
+ - &#8203;<!-- 09 -->[docs-infra] Limit the copy button to the visible code block (#42115) @danilo-leal
198
+ - &#8203;<!-- 08 -->[docs-infra] Make select components with two capital letters (#42004) @alexfauquette
199
+ - &#8203;<!-- 08 -->[docs-infra][toolpad] Fix Page title and SERP title mismatch (#41919) @bharatkashyap
200
+ - &#8203;<!-- 05 -->[website] Add redirection for talk @oliviertassinari
201
+ - &#8203;<!-- 04 -->[website] Adds Arthur Balduini team info (#42193) @arthurbalduini
202
+ - &#8203;<!-- 03 -->[website] Update the role template file (#42192) @danilo-leal
203
+ - &#8203;<!-- 02 -->[website] Update MUI X deps and migrate TreeView demos to v7 API (#42149) @noraleonte
204
+ - &#8203;<!-- 01 -->[website] Fix pricing casing (#42178) @aarongarciah
205
+
206
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @arthurbalduini, @bharatkashyap, @danilo-leal, @DiegoAndai, @heath-freenome, @lhilgert9, @noraleonte, @oliviertassinari, @sai6855, @samuelsycamore, @TahaRhidouani, @tarunrajput
207
+
208
+ ## v6.0.0-alpha.6
209
+
210
+ <!-- generated comparing v6.0.0-alpha.5..next -->
211
+
212
+ _May 8, 2024_
213
+
214
+ A big thanks to the 10 contributors who made this release possible.
215
+
216
+ ### `@mui/material@6.0.0-alpha.6`
217
+
218
+ - [Chip] Add colorDefault class to chipClasses (#42067) @sai6855
219
+ - Migrate components to support CSS extraction (#42001) @siriwatknp
220
+ - [SpeedDial] Deprecate TransitionComponent (#40698) @harry-whorlow
221
+
222
+ ### `@mui/codemod@6.0.0-alpha.6`
223
+
224
+ - Add `theme-v6` migration (#42056) @siriwatknp
225
+
226
+ ### `@mui/icons-material@6.0.0-alpha.6`
227
+
228
+ - Add the Emergency icon (#42080) @danilo-leal
229
+
230
+ ### Docs
231
+
232
+ - [autocomplete] Fix duplicate autocomplete id (#42086) @oliviertassinari
233
+ - Fix SEO redirection issues @oliviertassinari
234
+ - [material-ui] Fix broken link (#42142) @aarongarciah
235
+ - [material-ui][docs] Fix link on the Sync page (#42088) @danilo-leal
236
+
237
+ ### Core
238
+
239
+ - [blog] Shorten title to fit @oliviertassinari
240
+ - [blog] Update Sync post OG image (#42114) @danilo-leal
241
+ - [blog] A few tweaks in introducing-sync-plugin (#42092) @oliviertassinari
242
+ - [code-infra] Add canary release scripts (#41949) @michaldudak
243
+ - [code-infra] Move ComponentLinkHeader to @mui/docs (#42061) @Janpot
244
+ - [code-infra] Bump node image used by CI in docker (#42079) @LukasTy
245
+ - [core] Restrict import path with ESLint (#41970) @oliviertassinari
246
+ - [docs-infra] Add design and formatting improvements (#42063) @danilo-leal
247
+ - [docs-infra] Fix HTML structure violations (#42085) @oliviertassinari
248
+ - [website] Componentize a few Careers page sections (#42102) @danilo-leal
249
+ - [website] Refine the InfoCard design (#42116) @danilo-leal
250
+ - [website] Fix home page slider's track position (#42141) @aarongarciah
251
+ - [website] Closing the survey @oliviertassinari
252
+ - [website] Remove Survey banner from website and Core docs (#42104) @joserodolfofreitas
253
+
254
+ All contributors of this release in alphabetical order: @aarongarciah, @danilo-leal, @harry-whorlow, @Janpot, @joserodolfofreitas, @LukasTy, @michaldudak, @oliviertassinari, @sai6855, @siriwatknp
255
+
256
+ ## v6.0.0-alpha.5
257
+
258
+ <!-- generated comparing v6.0.0-alpha.4..next -->
259
+
260
+ _May 1, 2024_
261
+
262
+ A big thanks to the 9 contributors who made this release possible.
263
+
264
+ ### `@mui/material@6.0.0-alpha.5`
265
+
266
+ - [FormControlLabel] Deprecate `componentsProps` (#41767) @sai6855
267
+ - [PaginationItem] Deprecate components prop (#41777) @sai6855
268
+ - [SvgIcon] Convert to support CSS extraction (#41779) @aarongarciah
269
+
270
+ ### `@mui/base@5.0.0-beta.43`
271
+
272
+ - [TextareaAutosize] Fix resizing instability (#41638) @ZeeshanTamboli
273
+
274
+ ### Docs
275
+
276
+ - Fix small SEO issues @oliviertassinari
277
+ - [material-ui] Fix minor spelling error in the "About the lab" page (#42073) @ryanhartwig
278
+ - [material-ui] Update Figma plugin name (#41967) @danilo-leal
279
+ - [material-ui][templates] Fix input props attributes in Landing Page template (#42013) @5-tom
280
+ - [system] Update typo on the sx prop page (#42035) @bricker
281
+
282
+ ### Core
283
+
284
+ - [docs-infra] Clean up branding theme file and improve font-face readibility (#42023) @danilo-leal
285
+ - [docs-infra] Simplify docs demo (#42016) @oliviertassinari
286
+ - [website] Add content about the Sync plugin in the Material UI page (#40515) @danilo-leal
287
+ - [website] Sync career roles (#42058) @oliviertassinari
288
+ - [website] Add Nadja on the about page (#42021) @mnajdova
289
+ - [website] Fix code block design by changing the `MarkdownElement` import (#42022) @danilo-leal
290
+ - [wesbite] Remove duplicate MarkdownElement component (#42028) @danilo-leal
291
+
292
+ All contributors of this release in alphabetical order: @5-tom, @aarongarciah, @bricker, @danilo-leal, @mnajdova, @oliviertassinari, @ryanhartwig, @sai6855, @ZeeshanTamboli
293
+
294
+ ## v6.0.0-alpha.4
295
+
296
+ <!-- generated comparing v6.0.0-alpha.3..next -->
297
+
298
+ _Apr 24, 2024_
299
+
300
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
301
+
302
+ - 🔥 Converted 3 more Material UI components to use Pigment CSS.
303
+ - ℹ️ Pigment CSS now lives in [its own repository](https://github.com/mui/pigment-css)! From now on, all future development will happen there.
304
+
305
+ ### `@mui/material@6.0.0-alpha.4`
306
+
307
+ - [Checkbox] Convert to support CSS extraction (#41957) @lhilgert9
308
+ - [IconButton] Convert to support CSS extraction (#41850) @gijsbotje
309
+ - [Radio] Convert to support CSS extraction (#41840) @lhilgert9
310
+ - [Typography] Fix ownerState prop placement (#41903) @sai6855
311
+ - Generate typography tokens (#41703) @siriwatknp
312
+ - Move typography CSS variables to `font` (#42003) @siriwatknp
313
+ - Fix getOverlayAlpha type (#41995) @oliviertassinari
314
+ - Support CSS Extraction using codemod (#41935) @siriwatknp
315
+
316
+ ### `@mui/icons-material@6.0.0-alpha.4`
317
+
318
+ - &#8203;<!-- 08 -->[icons] Update the icons package (#41937) @danilo-leal
319
+
320
+ ### Docs
321
+
322
+ - [material-ui] Remove react-swipeable-views from demos as it's no longer maintained (#41912) @soler1212
323
+ - [material-ui] Add dark theme thumbnails for templates (#41947) @zanivan
324
+ - [material-ui] Remove links and interdependencies from free templates (#41941) @zanivan
325
+ - [material-ui] Add missing backticks to HTML tag in the installation page (#41972) @Miguelrom
326
+ - Fix 301 Toolpad links @oliviertassinari
327
+ - Fix 301 image redirections @oliviertassinari
328
+
329
+ ### Core
330
+
331
+ - pnpm docs:zipRules && vale sync @oliviertassinari
332
+ - Remove @pigment-css/\* packages (#41965) @mnajdova
333
+ - [code-infra] Move the HighlightedCode component to @mui/docs (#41859) @Janpot
334
+ - [code-infra] Move the HighlightedCode component to @mui/docs (#41859) @Janpot
335
+ - [code-infra] Make Babel config path configurable in API docs builder (#41999) @michaldudak
336
+ - [docs-infra] Fix flex-shrink pro-plan (#41990) @oliviertassinari
337
+ - [docs-infra] Allow more value uses of MUI (#41706) @oliviertassinari
338
+ - [docs-infra] Move CPU to shared config (#41901) @oliviertassinari
339
+ - [docs-infra] Improve Twitter OG:image (#41860) @oliviertassinari
340
+ - [docs-infra] Adapt docs infra to Base UI docs needs (#41963) @michaldudak
341
+ - [docs-infra] Add demo container design refinements (#41948) @danilo-leal
342
+ - [docs-infra] Use the `getLayout` on the material demo pages (#41936) @alexfauquette
343
+ - [test] Update browser versions in karma config (#42008) @ZeeshanTamboli
344
+ - [website] Remove customer support agent role from website (#41969) @rluzists1
345
+ - [website] Fix grid usage and add stray improvements (#41930) @danilo-leal
346
+
347
+ All contributors of this release in alphabetical order: @alexfauquette, @danilo-leal, @gijsbotje, @Janpot, @lhilgert9, @michaldudak, @Miguelrom, @mnajdova, @oliviertassinari, @rluzists1, @sai6855, @siriwatknp, @soler1212, @zanivan, @ZeeshanTamboli
348
+
349
+ ## v6.0.0-alpha.3
350
+
351
+ <!-- generated comparing v6.0.0-alpha.2..next -->
352
+
353
+ _Apr 17, 2024_
354
+
355
+ A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:
356
+
357
+ - 🔥 Converted 5 more Material UI components to use Pigment CSS.
358
+ - 🚀 Added container queries utility to the `@mui/system` package (#41674) @siriwatknp.
359
+
360
+ ### `@mui/material@6.0.0-alpha.3`
361
+
362
+ - Convert `LinearProgress` to support Pigment CSS (#41816) @siriwatknp
363
+ - [Dialog] Prevent onClick on the root element from being overwritten (#41881) @ryanburr
364
+ - [FloatingActionButton] Convert to support CSS extraction (#41851) @gijsbotje
365
+ - Convert `CircularProgress` to support Pigment CSS (#41776) @siriwatknp
366
+ - [PaginationItem] Convert to support CSS extraction (#41848) @gijsbotje
367
+ - [StepConnector] deprecate composed classes (#41740) @sai6855
368
+ - [StepLabel] Deprecate `StepIconComponent`, `StepIconProps` (#41835) @sai6855
369
+ - [ToggleButton] Convert to support CSS extraction (#41782) @lhilgert9
370
+ - [ToggleButtonGroup] Deprecate composed classes (#41288) @sai6855
371
+ - [Typography] Fix Typography inherit variant styles (#41308) @kealjones-wk
372
+
373
+ ### `@mui/system@6.0.0-alpha.3`
374
+
375
+ - Add container queries utility (#41674) @siriwatknp
376
+
377
+ ### `@mui/codemod@6.0.0-alpha.3`
378
+
379
+ - Add styled v6 transformation (#41743) @siriwatknp
380
+
381
+ ### `@mui/joy@5.0.0-beta.36`
382
+
383
+ - [Button] Disable text highlighting (#41902) @mithun522
384
+
385
+ ### `@pigment-css/react@0.0.7`
386
+
387
+ - Patch WyW's WeakRef usage (#41909) @DiegoAndai
388
+ - Implement sx transform for system components (#41861) @brijeshb42
389
+
390
+ ### Docs
391
+
392
+ - [material-ui] Add Connect-related content (#40848) @danilo-leal
393
+ - [material-ui] Fix credit comment typo (#41872) @aarongarciah
394
+ - [material-ui] Remove Data Grid v7 beta callout (#41839) @cherniavskii
395
+ - [material-ui] Add stray design tweaks to free templates (#41696) @zanivan
396
+ - [material-ui] Simplify components styling on templates (#41845) @zanivan
397
+ - [material-ui][Button] Add `onChange` event handler to file upload example (#41863) @aarongarciah
398
+ - [material-ui] Fix import statement in migration guide (#41852) @sai6855
399
+ - Fix 301 redirection @oliviertassinari
400
+ - Fix format git diff regression (#41882) @oliviertassinari
401
+ - Fix small SEO issues @oliviertassinari
402
+ - [pigment-css] Fix README typos (#41870) @MohammadShehadeh
403
+
404
+ ### Core
405
+
406
+ - Begin removing IE 11-related code (#41709) @iammminzzy
407
+ - [blog] Add post to introduce the Connect plugin (#41763) @danilo-leal
408
+ - [code-infra] Fix require.context with aliases (#41682) @Janpot
409
+ - [code-infra] Allow customizing hooks imports in API docs generator (#41828) @michaldudak
410
+ - [codemod] Add utils for `*Component` and `*Props` props deprecations (#41685) @DiegoAndai
411
+ - Replace bundle size reporter filter (#38979) @Janpot
412
+ - [docs-infra] Make the whole header clickable (#39603) @MoazMirza-13
413
+ - [docs-infra] Improve demo container and related components design (#41827) @danilo-leal
414
+ - [docs-infra] Use edge function for card generation (#41188) (#41836) @alexfauquette
415
+ - [docs-infra] Fix code block layout shift (#41917) @oliviertassinari
416
+ - [docs-infra] Fine-tune the OG card image design (#41862) @danilo-leal
417
+ - [docs-infra] Fix markdown version for material (#41908) @alexfauquette
418
+ - [docs-infra] Support multiple tabs in demos (#40901) @bharatkashyap
419
+
420
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @bharatkashyap, @brijeshb42, @cherniavskii, @danilo-leal, @DiegoAndai, @EyaOuenniche, @gijsbotje, @iammminzzy, @Janpot, @kealjones-wk, @lhilgert9, @magnimarels, @michaldudak, @mithun522, @mnajdova, @MoazMirza-13, @MohammadShehadeh, @oliviertassinari, @ryanburr, @sai6855, @siriwatknp, @zanivan
421
+
422
+ ## v6.0.0-alpha.2
423
+
424
+ <!-- generated comparing v6.0.0-alpha.1..next -->
425
+
426
+ _Apr 9, 2024_
427
+
428
+ A big thanks to the 5 contributors who made this release possible.
429
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
430
+
431
+ ### `@mui/material@6.0.0-alpha.2`
432
+
433
+ - &#8203;<!-- 03 -->[typescript][Select] Fix `muiName` property TypeScript error (#41726) @EyaOuenniche
434
+ - &#8203;<!-- 04 -->[l10n] Fix typo in is-IS locale (#41810) @magnimarels
435
+
436
+ ### `@pigment-css/react@0.0.6`
437
+
438
+ - &#8203;<!-- 12 -->[core] Remove `muiName` during eval phase (#41811) @brijeshb42
439
+
440
+ ### `@pigment-css/nextjs-plugin@0.0.6`
441
+
442
+ - &#8203;<!-- 02 -->[nextjs] Handle file references passed through imports (#41817) @brijeshb42
443
+ - &#8203;<!-- 01 -->[nextjs] Allow usage of url() CSS function (#41758) @brijeshb42
444
+
445
+ ### Docs
446
+
447
+ - &#8203;<!-- 11 -->[docs] Fix 301 links @oliviertassinari
448
+ - &#8203;<!-- 06 -->[pigment-css][docs] Fix README typo (#41808) @aarongarciah
449
+ - &#8203;<!-- 05 -->[pigment-css][docs] Fix output on dynamic styles example (#41805) @aarongarciah
450
+ - &#8203;<!-- 07 -->[material-ui][docs] Fix Material 3 message typo (#41821) @aarongarciah
451
+ - &#8203;<!-- 08 -->[material-ui][docs] Add stray design tweaks to free templates (#41696) @zanivan
452
+
453
+ ### Core
454
+
455
+ - &#8203;<!-- 13 -->[core] Remove unused files (#41818) @mnajdova
456
+ - &#8203;<!-- 10 -->[docs-infra] Fix analytics about inline ads (#41474) (#41819) @alexfauquette
457
+ - &#8203;<!-- 08 -->[docs-infra] Fix drawer performances (#41807) @alexfauquette
458
+
459
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @brijeshb42, @EyaOuenniche, @oliviertassinari
460
+
461
+ ## v6.0.0-alpha.1
462
+
463
+ <!-- generated comparing v6.0.0-alpha.0..next -->
464
+
465
+ _Apr 5, 2024_
466
+
467
+ A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
468
+
469
+ - 🔥 Converted 3 more Material UI components to use Pigment CSS. Current progress is 36%!
470
+ - 🚀 Added a spacing CSS variable to the Material UI and Joy UI themes.
471
+ - 💫 Added 3 redesigned free Material UI templates: [Sign-in](https://next.mui.com/material-ui/getting-started/templates/sign-in/), [Sign-in side](https://next.mui.com/material-ui/getting-started/templates/sign-in-side/), and [Sign-up](https://next.mui.com/material-ui/getting-started/templates/sign-up/).
472
+
473
+ ### `@mui/material@6.0.0-alpha.1`
474
+
475
+ - [AppBar] Convert to support CSS extraction (#41247) @mnajdova
476
+ - [Badge] Deprecate components and componentsProps (#41655) @skmanoj322
477
+ - [Button] Convert to support CSS extraction (#41378) @siriwatknp
478
+ - [ButtonGroup] Convert to support CSS extraction (#41666) @zanivan
479
+ - [RadioGroup] Apply classnames (#41610) @ZeeshanTamboli
480
+ - [Slider] Move palette styles to the bottom (#41676) @siriwatknp
481
+ - Add the `spacing` theme token (#40224) @siriwatknp
482
+
483
+ ### `@mui/system@6.0.0-alpha.1`
484
+
485
+ - Add the `spacing` theme token to be used in `theme.spacing()` (#40224) @siriwatknp
486
+
487
+ ### `@mui/codemod@6.0.0-alpha.1`
488
+
489
+ - [codemod] Setup v6 codemod structure (#41668) @DiegoAndai
490
+
491
+ ### `@mui/lab@6.0.0-alpha.1`
492
+
493
+ - [TabPanel] Add keepMounted prop to match Joy UI (#41651) @ppaskaris-plooto
494
+
495
+ ### `@mui/joy@5.0.0-beta.34`
496
+
497
+ - Add `spacing` theme token (#40224) @siriwatknp
498
+
499
+ ### `@pigment-css/react@0.0.5`
500
+
501
+ - Improve sx prop support (#41589) @brijeshb42
502
+ - Fix Emotion styled error (#41699) @siriwatknp
503
+ - Fix propTypes removal during eval stage (#41695) @brijeshb42
504
+ - Fix props forwarding (#41688) @siriwatknp
505
+ - Fix sx prop transformation on Box (#41705) @brijeshb42
506
+
507
+ ### `@pigment-css/vite-plugin@0.0.5`
508
+
509
+ - Use constant filename for pigment styles (#41667) @brijeshb42
510
+
511
+ ### `@pigment-css/nextjs-plugin@0.0.5`
512
+
513
+ - Add missing RTL implementation (#41751) @brijeshb42
514
+
515
+ ### Docs
516
+
517
+ - [pigment-css] Update README.md installation to use the next tag (#41649) @mnajdova
518
+ - [pigment-css] Add "Building design system components" guide with Pigment CSS (#41635) @siriwatknp
519
+ - Continue migration of Base UI to sperate repository @oliviertassinari
520
+ - Stick to one way to write IE 11 @oliviertassinari
521
+ - Fix typo in CONTRIBUTING.md (#41670) @adriancuadrado
522
+ - Drop IE 11 official support (#41611) @iammminzzy
523
+ - [material-ui] Fix typo on the Accordion page (#41687) @connorshea
524
+ - [pigment-css] Add small edits on the README (#41646) @danilo-leal
525
+ - [pigment-css] Edit the example app's README files (#41639) @danilo-leal
526
+
527
+ ### Core
528
+
529
+ - [code-infra] Move BrandingProvider/brandingTheme/InfoCard to @mui/docs (#41206) @Janpot
530
+ - [core] Automate cherry-pick of PRs from `next` -> `master` (#41741) @aarongarciah
531
+ - [core] Update the prettier script to use the next branch (#41637) @mnajdova
532
+ - [docs-infra] Skip loading source for non-editable modules (#41588) @bharatkashyap
533
+ - [docs-infra] Vale rule for M3 (#41737) @oliviertassinari
534
+ - [docs-infra] Allows to remove edit button (#41702) @alexfauquette
535
+ - [pigment-css][examples] Add example project with Remix (#41700) @brijeshb42
536
+ - [examples] Update MUI's packages to the next version (#41701) @mnajdova
537
+ - [material-ui] Refine the Sign-in and Sign-up templates (#41192) @zanivan
538
+ - [test] Add test to display options provided to the options prop even if loading is true. (#41675) @ZeeshanTamboli
539
+ - [blog] Refresh the design slightly (#41697) @danilo-leal
540
+ - [website] Use en-US over en-UK for career link @oliviertassinari
541
+ - [website] Add Aarón to About Us (#41736) @aarongarciah
542
+ - [website] Refine button design and other details (#41686) @danilo-leal
543
+ - [website] Improve job og image (#41672) @oliviertassinari
544
+ - [website] Page <title> should have no dots @oliviertassinari
545
+
546
+ All contributors of this release in alphabetical order: @aarongarciah, @adriancuadrado, @alexfauquette, @bharatkashyap, @brijeshb42, @connorshea, @danilo-leal, @DiegoAndai, @iammminzzy, @Janpot, @JCQuintas, @levigunz, @mnajdova, @oliviertassinari, @ppaskaris-plooto, @siriwatknp, @skmanoj322, @zanivan, @ZeeshanTamboli
547
+
3
548
  ## v6.0.0-alpha.0
4
549
 
5
550
  <!-- generated comparing v5.15.14..next -->
@@ -79,6 +624,46 @@ A big thanks to the 18 contributors who made this release possible. Here are som
79
624
 
80
625
  All contributors of this release in alphabetical order: @aacevski, @brijeshb42, @cherniavskii, @cipherlogs, @danilo-leal, @DiegoAndai, @harry-whorlow, @Janpot, @joserodolfofreitas, @michael-land, @michaldudak, @mnajdova, @nekoya, @sai6855, @siriwatknp, @StylesTrip, @zanivan, @ZeeshanTamboli
81
626
 
627
+ ## v5.15.15
628
+
629
+ <!-- generated comparing v5.15.14..master -->
630
+
631
+ _Apr 4, 2024_
632
+
633
+ A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
634
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
635
+
636
+ ### `@mui/material@5.15.15`
637
+
638
+ - [Autocomplete] Display options provided to the `options` prop even if loading is true (#41677) @ZeeshanTamboli
639
+ - [RadioGroup] Apply classnames (#41681) @ZeeshanTamboli
640
+
641
+ ### `@mui/system@5.15.15`
642
+
643
+ - Fix typo to avoid infinite recursion in function call (#41678) @ZeeshanTamboli
644
+
645
+ ### Docs
646
+
647
+ - [material-ui][Slider] Remove `valueLabelFormat` from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
648
+ - [material-ui] Remove deleted page from the sidenav (#41594) @danilo-leal
649
+ - [material-ui] Fix typo in CSS theme variables customization (#41680) @ZeeshanTamboli
650
+ - Continue migration of Base UI to sperate repository @oliviertassinari
651
+ - Add notification for MUI X v7 blog post (#41587) (#41605) @cherniavskii
652
+ - Update the versions dropdown to show v6 (#41557) @mnajdova
653
+
654
+ ### Core
655
+
656
+ - [blog] Link to Romain's blog post in MUI X v7 announcement post (#41641) @cherniavskii
657
+ - [blog] Blog post with MUI X v7.0.0 annoucement (#41563) (#41604) @cherniavskii
658
+ - [blog] Add post about remote (#41565) @danilo-leal
659
+ - [core] Continue rename of Toolpad @oliviertassinari
660
+ - [docs-infra] Add Toolpad product/category IDs to types (#41551) @bharatkashyap
661
+ - [website] Add Aarón to About Us (#41747) @aarongarciah
662
+ - [website] Add stray design adjustments throughout the site (#41642) @mnajdova
663
+ - [website] Update pricing table (#41606) @cherniavskii
664
+
665
+ All contributors of this release in alphabetical order: @aarongarciah, @bharatkashyap, @cherniavskii, @danilo-leal, @mnajdova, @oliviertassinari, @ZeeshanTamboli
666
+
82
667
  ## v5.15.14
83
668
 
84
669
  <!-- generated comparing v5.15.13..master -->
@@ -893,7 +1478,7 @@ A big thanks to the 22 contributors who made this release possible. Here are som
893
1478
  - [material-ui] Revise the Alert demo page (#34892) @samuelsycamore
894
1479
  - [material-ui] Revise the Accordion page (#40284) @anle9650
895
1480
  - [material-ui] Add docs for complementary Card components (#40346) @anle9650
896
- - [material-ui] Add Material 3 components page (#40350) @DiegoAndai
1481
+ - [material-ui] Add Material Design 3 components page (#40350) @DiegoAndai
897
1482
  - Fix strange italic style @oliviertassinari
898
1483
  - Fix references to ESLint @oliviertassinari
899
1484
  - Fix 301 redirections @oliviertassinari
@@ -8001,7 +8586,7 @@ A big thanks to the 25 contributors who made this release possible. Here are som
8001
8586
 
8002
8587
  <a href="https://mui.com/components/tables/#unstyled-table"><img width="800" alt="unstyled table" src="https://user-images.githubusercontent.com/4512430/144862194-584356ef-7d9d-462c-a631-186a7e716193.png"></a>
8003
8588
 
8004
- You can follow our progress with unstyled components at https://github.com/mui/material-ui/issues/27170.
8589
+ You can follow our progress with unstyled components at https://github.com/mui/base-ui/issues/10.
8005
8590
 
8006
8591
  - 🎉 We have added an example of how to use MUI with [Remix](https://remix.run/) (#29952) @mnajdova
8007
8592
 
@@ -8268,7 +8853,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
8268
8853
 
8269
8854
  - &#8203;<!-- 27 -->[core] Rename mui/core to mui/base (#29585) @michaldudak
8270
8855
 
8271
- Based on the results of the [poll](https://twitter.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @mui/core was effectively a subset of MUI Core. This was confusing.
8856
+ Based on the results of the [poll](https://x.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @mui/core was effectively a subset of MUI Core. This was confusing.
8272
8857
 
8273
8858
  The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a **base** to build on.
8274
8859
 
@@ -9471,7 +10056,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
9471
10056
 
9472
10057
  <a href="https://mui.com/components/switches/#unstyled"><img width="832" alt="switch" src="https://user-images.githubusercontent.com/3165635/125192249-236f8a80-e247-11eb-9df9-17d476379a32.png"></a>
9473
10058
 
9474
- You can follow our progress at https://github.com/mui/material-ui/issues/27170.
10059
+ You can follow our progress at https://github.com/mui/base-ui/issues/10.
9475
10060
 
9476
10061
  - 💄 We have updated the default `info` `success` `warning` color to be more accessible (#26817) @siriwatknp.
9477
10062
  You can find the new [default values](https://mui.com/material-ui/customization/palette/#default-values) in the documentation.
@@ -12685,7 +13270,7 @@ A big thanks to the 34 contributors who made this release possible. Here are som
12685
13270
  ```
12686
13271
 
12687
13272
  - [Autocomplete] Remove `debug` in favor of `open` and dev tools (#23377) @eps1lon
12688
- There are a couple of simpler alternatives: `open={true}`, Chrome devtools ["Emulate focused"](https://twitter.com/sulco/status/1305841873945272321), or React devtools props.
13273
+ There are a couple of simpler alternatives: `open={true}`, Chrome devtools ["Emulate focused"](https://x.com/sulco/status/1305841873945272321), or React devtools props.
12689
13274
 
12690
13275
  #### Changes
12691
13276
 
@@ -13057,7 +13642,7 @@ Here are some highlights ✨:
13057
13642
 
13058
13643
  1. `stable` (default, formerly `esm`) which targets a snapshot (on release) of `> 0.5%, last 2 versions, Firefox ESR, not dead, not IE 11"`
13059
13644
  2. `node` (formerly default) which targets a snapshot (on release) of `maintained node versions`
13060
- 3. `legacy` (new) which is `stable` + IE11
13645
+ 3. `legacy` (new) which is `stable` + IE 11
13061
13646
  4. `modern` (formerly `es`) which targets the last 1 version of evergreen browsers and active node (currently that is 14
13062
13647
 
13063
13648
  The change yields a 6% reduction in bundle size 📦 (Babel only).
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ /**
3
+ * How to use: spread the handlers to the .MuiCode-root
4
+ *
5
+ * The html structure should be:
6
+ * <div className="MuiCode-root">
7
+ * <pre>...</pre>
8
+ * <button className="MuiCode-copy">...</button>
9
+ * </div>
10
+ */
11
+ export declare function useCodeCopy(): React.HTMLAttributes<HTMLDivElement>;
12
+ interface CodeCopyProviderProps {
13
+ children: React.ReactNode;
14
+ }
15
+ /**
16
+ * Place <CodeCopyProvider> at the page level. It will check the keydown event and try to initiate copy click if rootNode exist.
17
+ * Any code block inside the tree can set the rootNode when mouse enter to leverage keyboard copy.
18
+ */
19
+ export declare function CodeCopyProvider({ children }: CodeCopyProviderProps): React.JSX.Element;
20
+ export {};