@backstage/core-components 0.9.3-next.2 → 0.9.3
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 +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.9.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c7919777e: build(deps-dev): bump `@testing-library/react-hooks` from 7.0.2 to 8.0.0
|
|
8
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
9
|
+
- 25b8e8d5b5: Add BackstageTab to overridableComponents so can override styles in a theme
|
|
10
|
+
- 230ad0826f: Bump to using `@types/node` v16
|
|
11
|
+
- 41fd107189: Exported `IdentityProviders` type.
|
|
12
|
+
- a13604b8f7: Adding a name to the core-components Tab styles so can customise in the theme settings
|
|
13
|
+
- 19648d5cf5: fix support config ref to use backstage/backstage
|
|
14
|
+
- d505e43ffc: Fix highlighting of active sidebar items.
|
|
15
|
+
- 72f3dfd05a: Updated ProxiedSignInPageProps docs
|
|
16
|
+
- 7741e47eae: `<Sidebar />` now accepts additional props `sidebarOptions` and `submenuOptions` to allow further customization
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/core-plugin-api@1.0.1
|
|
19
|
+
|
|
3
20
|
## 0.9.3-next.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-components",
|
|
3
3
|
"description": "Core components used by Backstage plugins and apps",
|
|
4
|
-
"version": "0.9.3
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@backstage/config": "^1.0.0",
|
|
37
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
37
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
38
38
|
"@backstage/errors": "^1.0.0",
|
|
39
39
|
"@backstage/theme": "^0.2.15",
|
|
40
40
|
"@material-table/core": "^3.1.0",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"react-dom": "^16.13.1 || ^17.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.17.0
|
|
82
|
-
"@backstage/core-app-api": "^1.0.1
|
|
83
|
-
"@backstage/test-utils": "^1.0.1
|
|
81
|
+
"@backstage/cli": "^0.17.0",
|
|
82
|
+
"@backstage/core-app-api": "^1.0.1",
|
|
83
|
+
"@backstage/test-utils": "^1.0.1",
|
|
84
84
|
"@testing-library/jest-dom": "^5.10.1",
|
|
85
85
|
"@testing-library/react": "^12.1.3",
|
|
86
|
-
"@testing-library/react-hooks": "^
|
|
86
|
+
"@testing-library/react-hooks": "^8.0.0",
|
|
87
87
|
"@testing-library/user-event": "^14.0.0",
|
|
88
88
|
"@types/ansi-regex": "^5.0.0",
|
|
89
89
|
"@types/classnames": "^2.2.9",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"files": [
|
|
106
106
|
"dist"
|
|
107
107
|
],
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
109
109
|
}
|