Version Packages

This commit is contained in:
github-actions[bot]
2023-06-20 13:54:09 +00:00
parent 91fd39cd7e
commit bc0c4bc64c
575 changed files with 6299 additions and 1817 deletions
+21
View File
@@ -1,5 +1,26 @@
# @backstage/theme
## 0.4.0
### Minor Changes
- 1fd38bc4141a: **MUI v5 Support:** Adding platform-wide support for MUI v5 allowing a transition phase for migrating central plugins & components over. We still support v4 instances & plugins by adding a
To allow the future support of plugins & components using MUI v5 you want to upgrade your `AppTheme`'s to using the `UnifiedThemeProvider`
```diff
Provider: ({ children }) => (
- <ThemeProvider theme={lightTheme}>
- <CssBaseline>{children}</CssBaseline>
- </ThemeProvider>
+ <UnifiedThemeProvider theme={builtinThemes.light} children={children} />
),
```
### Patch Changes
- 5065a5e8ebd6: Tweaked `UnifiedThemeProvider` to avoid overlapping JSS class names in production.
## 0.4.0-next.1
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/theme",
"description": "material-ui theme for use with Backstage.",
"version": "0.4.0-next.1",
"version": "0.4.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",