@backstage/core-components 0.14.0-next.2 → 0.14.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 +37 -0
- package/package.json +7 -7
- package/testUtils/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 281e8c6: **BREAKING**: Removed the `SidebarIntro` component as it was providing instructions for features that do not exist, along with `IntroCard`. If you were relying on this component and want to keep using it you can refer to the original implementations of [`SidebarIntro`](https://github.com/backstage/backstage/blob/80f2413334ed9b221ec3c2b7c22fa737ad8d8885/packages/core-components/src/layout/Sidebar/Intro.tsx#L149) and [`IntroCard`](https://github.com/backstage/backstage/blob/80f2413334ed9b221ec3c2b7c22fa737ad8d8885/packages/core-components/src/layout/Sidebar/Intro.tsx#L100).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3e1c6e2: Added possibility to show arrow heads for graph edges for better understandability.
|
|
12
|
+
|
|
13
|
+
In order to show arrow heads in the catalog graph page, add `showArrowHeads` attribute to `CatalogGraphPage` component
|
|
14
|
+
(typically in `packages/app/src/App.tsx`):
|
|
15
|
+
|
|
16
|
+
```diff
|
|
17
|
+
- <CatalogGraphPage />
|
|
18
|
+
+ <CatalogGraphPage showArrowHeads />
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
In order to show arrow heads in entity graphs, add `showArrowHeads` attribute to `EntityCatalogGraphCard` components
|
|
22
|
+
(typically multiple occurrences in `packages/app/src/components/catalog/EntityPage.tsx`):
|
|
23
|
+
|
|
24
|
+
```diff
|
|
25
|
+
- <EntityCatalogGraphCard variant="gridItem" height={400} />
|
|
26
|
+
+ <EntityCatalogGraphCard variant="gridItem" height={400} showArrowHeads />
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
30
|
+
- 7f11009: Added stack trace display to `ErrorPage` and updated existing refs
|
|
31
|
+
- 09cedb9: Updated dependency `@react-hookz/web` to `^24.0.0`.
|
|
32
|
+
- 214f2da: Fix invalid HTTP status code 501 in Error Page
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/theme@0.5.1
|
|
35
|
+
- @backstage/core-plugin-api@1.9.0
|
|
36
|
+
- @backstage/config@1.1.1
|
|
37
|
+
- @backstage/errors@1.2.3
|
|
38
|
+
- @backstage/version-bridge@1.0.7
|
|
39
|
+
|
|
3
40
|
## 0.14.0-next.2
|
|
4
41
|
|
|
5
42
|
### 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.14.0
|
|
4
|
+
"version": "0.14.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@backstage/config": "^1.1.1",
|
|
48
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
48
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
49
49
|
"@backstage/errors": "^1.2.3",
|
|
50
|
-
"@backstage/theme": "^0.5.1
|
|
50
|
+
"@backstage/theme": "^0.5.1",
|
|
51
51
|
"@backstage/version-bridge": "^1.0.7",
|
|
52
52
|
"@date-io/core": "^1.3.13",
|
|
53
53
|
"@material-table/core": "^3.1.0",
|
|
@@ -90,10 +90,10 @@
|
|
|
90
90
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@backstage/app-defaults": "^1.5.0
|
|
94
|
-
"@backstage/cli": "^0.25.2
|
|
95
|
-
"@backstage/core-app-api": "^1.12.0
|
|
96
|
-
"@backstage/test-utils": "^1.5.0
|
|
93
|
+
"@backstage/app-defaults": "^1.5.0",
|
|
94
|
+
"@backstage/cli": "^0.25.2",
|
|
95
|
+
"@backstage/core-app-api": "^1.12.0",
|
|
96
|
+
"@backstage/test-utils": "^1.5.0",
|
|
97
97
|
"@testing-library/dom": "^9.0.0",
|
|
98
98
|
"@testing-library/jest-dom": "^6.0.0",
|
|
99
99
|
"@testing-library/react": "^14.0.0",
|