@backstage/plugin-catalog 0.0.0-nightly-20220619024941 → 0.0.0-nightly-20220622024934

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -3
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @backstage/plugin-catalog
2
2
 
3
- ## 0.0.0-nightly-20220619024941
3
+ ## 0.0.0-nightly-20220622024934
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -25,8 +25,44 @@
25
25
  ```
26
26
 
27
27
  - Updated dependencies
28
- - @backstage/catalog-model@0.0.0-nightly-20220619024941
29
- - @backstage/core-components@0.0.0-nightly-20220619024941
28
+ - @backstage/catalog-model@0.0.0-nightly-20220622024934
29
+ - @backstage/core-components@0.0.0-nightly-20220622024934
30
+ - @backstage/catalog-client@0.0.0-nightly-20220622024934
31
+ - @backstage/integration-react@0.0.0-nightly-20220622024934
32
+ - @backstage/plugin-catalog-react@0.0.0-nightly-20220622024934
33
+ - @backstage/plugin-search-react@0.0.0-nightly-20220622024934
34
+
35
+ ## 1.3.1-next.0
36
+
37
+ ### Patch Changes
38
+
39
+ - dcaf1cb418: Previously, the color of the Entity Context Menu (in the Entity Page Header) was hardcoded as `white`.
40
+
41
+ This was an issue for themes that use a header with a white background. By default, the color of the icon is now `theme.palette.bursts.fontColor`.
42
+
43
+ It can now also be overridden in the theme, which is only necessary if the header title, subtitle and three-dots icon need to have different colors. For example:
44
+
45
+ ```typescript
46
+ export function createThemeOverrides(theme: BackstageTheme): Overrides {
47
+ return {
48
+ PluginCatalogEntityContextMenu: {
49
+ button: {
50
+ color: 'blue',
51
+ },
52
+ },
53
+ ...
54
+ },
55
+ ...
56
+ }
57
+ ```
58
+
59
+ - Updated dependencies
60
+ - @backstage/catalog-model@1.1.0-next.0
61
+ - @backstage/core-components@0.9.6-next.0
62
+ - @backstage/catalog-client@1.0.4-next.0
63
+ - @backstage/plugin-catalog-react@1.1.2-next.0
64
+ - @backstage/integration-react@1.1.2-next.0
65
+ - @backstage/plugin-search-react@0.2.2-next.0
30
66
 
31
67
  ## 1.3.0
32
68
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog",
3
3
  "description": "The Backstage plugin for browsing the Backstage catalog",
4
- "version": "0.0.0-nightly-20220619024941",
4
+ "version": "0.0.0-nightly-20220622024934",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,16 +34,16 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/catalog-client": "^1.0.3",
38
- "@backstage/catalog-model": "^0.0.0-nightly-20220619024941",
39
- "@backstage/core-components": "^0.0.0-nightly-20220619024941",
37
+ "@backstage/catalog-client": "^0.0.0-nightly-20220622024934",
38
+ "@backstage/catalog-model": "^0.0.0-nightly-20220622024934",
39
+ "@backstage/core-components": "^0.0.0-nightly-20220622024934",
40
40
  "@backstage/core-plugin-api": "^1.0.3",
41
41
  "@backstage/errors": "^1.0.0",
42
- "@backstage/integration-react": "^1.1.1",
42
+ "@backstage/integration-react": "^0.0.0-nightly-20220622024934",
43
43
  "@backstage/plugin-catalog-common": "^1.0.3",
44
- "@backstage/plugin-catalog-react": "^1.1.1",
44
+ "@backstage/plugin-catalog-react": "^0.0.0-nightly-20220622024934",
45
45
  "@backstage/plugin-search-common": "^0.3.5",
46
- "@backstage/plugin-search-react": "^0.2.1",
46
+ "@backstage/plugin-search-react": "^0.0.0-nightly-20220622024934",
47
47
  "@backstage/theme": "^0.2.15",
48
48
  "@backstage/types": "^1.0.0",
49
49
  "@material-ui/core": "^4.12.2",
@@ -61,11 +61,11 @@
61
61
  "react": "^16.13.1 || ^17.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.17.2",
65
- "@backstage/core-app-api": "^0.0.0-nightly-20220619024941",
66
- "@backstage/dev-utils": "^1.0.3",
64
+ "@backstage/cli": "^0.0.0-nightly-20220622024934",
65
+ "@backstage/core-app-api": "^0.0.0-nightly-20220622024934",
66
+ "@backstage/dev-utils": "^0.0.0-nightly-20220622024934",
67
67
  "@backstage/plugin-permission-react": "^0.4.2",
68
- "@backstage/test-utils": "^1.1.1",
68
+ "@backstage/test-utils": "^0.0.0-nightly-20220622024934",
69
69
  "@testing-library/jest-dom": "^5.10.1",
70
70
  "@testing-library/react": "^12.1.3",
71
71
  "@testing-library/user-event": "^14.0.0",