@backstage/plugin-catalog-graph 0.4.14-next.1 → 0.4.14

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 (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +14 -0
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-catalog-graph
2
2
 
3
+ ## 0.4.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.15.0
9
+ - @backstage/catalog-client@1.9.0
10
+ - @backstage/core-compat-api@0.3.4
11
+ - @backstage/frontend-plugin-api@0.9.3
12
+ - @backstage/core-components@0.16.2
13
+ - @backstage/catalog-model@1.7.2
14
+ - @backstage/core-plugin-api@1.10.2
15
+ - @backstage/types@1.2.0
16
+
17
+ ## 0.4.14-next.2
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/core-compat-api@0.3.4-next.2
23
+ - @backstage/plugin-catalog-react@1.14.3-next.2
24
+ - @backstage/catalog-client@1.9.0-next.2
25
+ - @backstage/catalog-model@1.7.2-next.0
26
+ - @backstage/core-components@0.16.2-next.2
27
+ - @backstage/core-plugin-api@1.10.2-next.0
28
+ - @backstage/frontend-plugin-api@0.9.3-next.2
29
+ - @backstage/types@1.2.0
30
+
3
31
  ## 0.4.14-next.1
4
32
 
5
33
  ### Patch Changes
package/README.md CHANGED
@@ -137,6 +137,20 @@ return (
137
137
  );
138
138
  ```
139
139
 
140
+ Once you have your custom implementation, you can follow these steps to modify the required components:
141
+
142
+ - In the `app.tsx` update the `CatalogGraphPage` component to include your custom styles:
143
+
144
+ ```tsx
145
+ <Route path=“/catalog-graph” element={<CatalogGraphPage renderNode={MyCustomRenderNode} />} />
146
+ ```
147
+
148
+ - In the `Entity.tsx` file, update the `EntityCatalogGraphCard` component to this:
149
+
150
+ ```tsx
151
+ <EntityCatalogGraphCard variant=“gridItem” renderNode={MyCustomRenderNode} height={400} />
152
+ ```
153
+
140
154
  ## Development
141
155
 
142
156
  Run `yarn` in the root of this plugin to install all dependencies and then `yarn start` to run a [development version](./dev/index.tsx) of this plugin.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-graph",
3
- "version": "0.4.14-next.1",
3
+ "version": "0.4.14",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "catalog-graph",
@@ -58,14 +58,14 @@
58
58
  "test": "backstage-cli package test"
59
59
  },
60
60
  "dependencies": {
61
- "@backstage/catalog-client": "1.9.0-next.1",
62
- "@backstage/catalog-model": "1.7.1",
63
- "@backstage/core-compat-api": "0.3.4-next.1",
64
- "@backstage/core-components": "0.16.2-next.1",
65
- "@backstage/core-plugin-api": "1.10.1",
66
- "@backstage/frontend-plugin-api": "0.9.3-next.1",
67
- "@backstage/plugin-catalog-react": "1.14.3-next.1",
68
- "@backstage/types": "1.2.0",
61
+ "@backstage/catalog-client": "^1.9.0",
62
+ "@backstage/catalog-model": "^1.7.2",
63
+ "@backstage/core-compat-api": "^0.3.4",
64
+ "@backstage/core-components": "^0.16.2",
65
+ "@backstage/core-plugin-api": "^1.10.2",
66
+ "@backstage/frontend-plugin-api": "^0.9.3",
67
+ "@backstage/plugin-catalog-react": "^1.15.0",
68
+ "@backstage/types": "^1.2.0",
69
69
  "@material-ui/core": "^4.12.2",
70
70
  "@material-ui/icons": "^4.9.1",
71
71
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -76,11 +76,11 @@
76
76
  "react-use": "^17.2.4"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/cli": "0.29.3-next.1",
80
- "@backstage/core-app-api": "1.15.3-next.0",
81
- "@backstage/dev-utils": "1.1.5-next.1",
82
- "@backstage/plugin-catalog": "1.25.2-next.1",
83
- "@backstage/test-utils": "1.7.3-next.0",
79
+ "@backstage/cli": "^0.29.4",
80
+ "@backstage/core-app-api": "^1.15.3",
81
+ "@backstage/dev-utils": "^1.1.5",
82
+ "@backstage/plugin-catalog": "^1.26.0",
83
+ "@backstage/test-utils": "^1.7.3",
84
84
  "@testing-library/dom": "^10.0.0",
85
85
  "@testing-library/jest-dom": "^6.0.0",
86
86
  "@testing-library/react": "^16.0.0",