@backstage/theme 0.5.7 → 0.6.0-next.1
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 +12 -0
- package/dist/index.d.ts +3 -0
- package/package.json +13 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/theme
|
|
2
2
|
|
|
3
|
+
## 0.6.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs.
|
|
8
|
+
|
|
9
|
+
## 0.5.8-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
14
|
+
|
|
3
15
|
## 0.5.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-next.1",
|
|
4
4
|
"description": "material-ui theme for use with Backstage.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library"
|
|
@@ -41,17 +41,26 @@
|
|
|
41
41
|
"@mui/material": "^5.12.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "
|
|
44
|
+
"@backstage/cli": "0.28.0-next.2",
|
|
45
45
|
"@mui/styles": "^5.14.18",
|
|
46
46
|
"@testing-library/jest-dom": "^6.0.0",
|
|
47
47
|
"@testing-library/react": "^16.0.0",
|
|
48
|
-
"@types/react": "^
|
|
48
|
+
"@types/react": "^18.0.0",
|
|
49
|
+
"react": "^18.0.2",
|
|
50
|
+
"react-dom": "^18.0.2",
|
|
51
|
+
"react-router-dom": "^6.3.0"
|
|
49
52
|
},
|
|
50
53
|
"peerDependencies": {
|
|
51
54
|
"@material-ui/core": "^4.12.2",
|
|
52
55
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
53
56
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
54
|
-
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
57
|
+
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
58
|
+
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependenciesMeta": {
|
|
61
|
+
"@types/react": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
55
64
|
},
|
|
56
65
|
"module": "./dist/index.esm.js"
|
|
57
66
|
}
|