@backstage/plugin-catalog-graph 0.4.10 → 0.4.11-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 +24 -3
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +9 -2
- package/package.json +26 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
-
## 0.4.
|
|
3
|
+
## 0.4.11-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/
|
|
9
|
+
- @backstage/core-components@0.15.1-next.1
|
|
10
|
+
- @backstage/frontend-plugin-api@0.9.0-next.1
|
|
11
|
+
- @backstage/core-compat-api@0.3.1-next.1
|
|
12
|
+
- @backstage/core-plugin-api@1.10.0-next.1
|
|
13
|
+
- @backstage/plugin-catalog-react@1.14.0-next.1
|
|
14
|
+
- @backstage/catalog-client@1.7.0
|
|
15
|
+
- @backstage/catalog-model@1.7.0
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
|
|
18
|
+
## 0.4.10-next.0
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
24
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
25
|
+
- @backstage/core-components@0.15.1-next.0
|
|
26
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
27
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
28
|
+
- @backstage/catalog-client@1.7.0
|
|
29
|
+
- @backstage/catalog-model@1.7.0
|
|
30
|
+
- @backstage/types@1.1.1
|
|
10
31
|
|
|
11
32
|
## 0.4.9
|
|
12
33
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -55,8 +55,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
55
55
|
}>;
|
|
56
56
|
};
|
|
57
57
|
kind: "entity-card";
|
|
58
|
-
namespace: undefined;
|
|
59
58
|
name: "relations";
|
|
59
|
+
params: {
|
|
60
|
+
loader: () => Promise<JSX.Element>;
|
|
61
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
62
|
+
};
|
|
60
63
|
}>;
|
|
61
64
|
"page:catalog-graph": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
62
65
|
config: {
|
|
@@ -103,8 +106,12 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
103
106
|
}>;
|
|
104
107
|
};
|
|
105
108
|
kind: "page";
|
|
106
|
-
namespace: undefined;
|
|
107
109
|
name: undefined;
|
|
110
|
+
params: {
|
|
111
|
+
defaultPath: string;
|
|
112
|
+
loader: () => Promise<JSX.Element>;
|
|
113
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
114
|
+
};
|
|
108
115
|
}>;
|
|
109
116
|
}>;
|
|
110
117
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11-next.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"default": "./dist/index.esm.js"
|
|
27
27
|
},
|
|
28
28
|
"./alpha": {
|
|
29
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
29
30
|
"import": "./dist/alpha.esm.js",
|
|
30
31
|
"types": "./dist/alpha.d.ts",
|
|
31
32
|
"default": "./dist/alpha.esm.js"
|
|
@@ -48,18 +49,17 @@
|
|
|
48
49
|
"test": "backstage-cli package test"
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
|
-
"@backstage/catalog-client": "
|
|
52
|
-
"@backstage/catalog-model": "
|
|
53
|
-
"@backstage/core-compat-api": "
|
|
54
|
-
"@backstage/core-components": "
|
|
55
|
-
"@backstage/core-plugin-api": "
|
|
56
|
-
"@backstage/frontend-plugin-api": "
|
|
57
|
-
"@backstage/plugin-catalog-react": "
|
|
58
|
-
"@backstage/types": "
|
|
52
|
+
"@backstage/catalog-client": "1.7.0",
|
|
53
|
+
"@backstage/catalog-model": "1.7.0",
|
|
54
|
+
"@backstage/core-compat-api": "0.3.1-next.1",
|
|
55
|
+
"@backstage/core-components": "0.15.1-next.1",
|
|
56
|
+
"@backstage/core-plugin-api": "1.10.0-next.1",
|
|
57
|
+
"@backstage/frontend-plugin-api": "0.9.0-next.1",
|
|
58
|
+
"@backstage/plugin-catalog-react": "1.14.0-next.1",
|
|
59
|
+
"@backstage/types": "1.1.1",
|
|
59
60
|
"@material-ui/core": "^4.12.2",
|
|
60
61
|
"@material-ui/icons": "^4.9.1",
|
|
61
62
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
62
|
-
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
63
63
|
"classnames": "^2.3.1",
|
|
64
64
|
"lodash": "^4.17.15",
|
|
65
65
|
"p-limit": "^3.1.0",
|
|
@@ -67,20 +67,30 @@
|
|
|
67
67
|
"react-use": "^17.2.4"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/cli": "
|
|
71
|
-
"@backstage/core-app-api": "
|
|
72
|
-
"@backstage/dev-utils": "
|
|
73
|
-
"@backstage/plugin-catalog": "
|
|
74
|
-
"@backstage/test-utils": "
|
|
70
|
+
"@backstage/cli": "0.28.0-next.1",
|
|
71
|
+
"@backstage/core-app-api": "1.15.1-next.1",
|
|
72
|
+
"@backstage/dev-utils": "1.1.2-next.1",
|
|
73
|
+
"@backstage/plugin-catalog": "1.24.0-next.1",
|
|
74
|
+
"@backstage/test-utils": "1.6.1-next.1",
|
|
75
75
|
"@testing-library/dom": "^10.0.0",
|
|
76
76
|
"@testing-library/jest-dom": "^6.0.0",
|
|
77
77
|
"@testing-library/react": "^16.0.0",
|
|
78
|
-
"@testing-library/user-event": "^14.0.0"
|
|
78
|
+
"@testing-library/user-event": "^14.0.0",
|
|
79
|
+
"@types/react": "^18.0.0",
|
|
80
|
+
"react": "^18.0.2",
|
|
81
|
+
"react-dom": "^18.0.2",
|
|
82
|
+
"react-router-dom": "^6.3.0"
|
|
79
83
|
},
|
|
80
84
|
"peerDependencies": {
|
|
85
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
81
86
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
82
87
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
83
88
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
84
89
|
},
|
|
90
|
+
"peerDependenciesMeta": {
|
|
91
|
+
"@types/react": {
|
|
92
|
+
"optional": true
|
|
93
|
+
}
|
|
94
|
+
},
|
|
85
95
|
"module": "./dist/index.esm.js"
|
|
86
96
|
}
|