@backstage/theme 0.5.8-next.0 → 0.6.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,21 @@
1
1
  # @backstage/theme
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs.
8
+
9
+ ### Patch Changes
10
+
11
+ - e969dc7: Move `@types/react` to a peer dependency.
12
+
13
+ ## 0.6.0-next.1
14
+
15
+ ### Minor Changes
16
+
17
+ - e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs.
18
+
3
19
  ## 0.5.8-next.0
4
20
 
5
21
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -87,6 +87,9 @@ type BackstagePaletteAdditions = {
87
87
  closeButtonColor?: string;
88
88
  warning?: string;
89
89
  };
90
+ code?: {
91
+ background?: string;
92
+ };
90
93
  };
91
94
  /**
92
95
  * Selector for what page theme to use.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/theme",
3
- "version": "0.5.8-next.0",
3
+ "version": "0.6.0",
4
4
  "description": "material-ui theme for use with Backstage.",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -41,7 +41,7 @@
41
41
  "@mui/material": "^5.12.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/cli": "0.28.0-next.1",
44
+ "@backstage/cli": "^0.28.0",
45
45
  "@mui/styles": "^5.14.18",
46
46
  "@testing-library/jest-dom": "^6.0.0",
47
47
  "@testing-library/react": "^16.0.0",