@backstage/plugin-catalog-graph 0.5.7-next.2 → 0.5.8-next.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 +29 -0
- package/dist/alpha.d.ts +24 -3
- package/dist/package.json.esm.js +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
+
## 0.5.8-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.14.2-next.0
|
|
9
|
+
- @backstage/catalog-client@1.13.1-next.0
|
|
10
|
+
- @backstage/plugin-catalog-react@2.0.1-next.0
|
|
11
|
+
- @backstage/catalog-model@1.7.6
|
|
12
|
+
- @backstage/core-components@0.18.8-next.0
|
|
13
|
+
- @backstage/core-plugin-api@1.12.4-next.0
|
|
14
|
+
- @backstage/types@1.2.2
|
|
15
|
+
|
|
16
|
+
## 0.5.7
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- ac9bead: Added `@backstage/frontend-test-utils` dev dependency.
|
|
21
|
+
- 8dd27c4: Fix large icon rendering in catalog graph nodes
|
|
22
|
+
- 7feb83b: Adjusted to use the new `@backstage/filter-predicates` types for predicate expressions.
|
|
23
|
+
- 4183614: Updated usage of deprecated APIs in the new frontend system.
|
|
24
|
+
- a7e0d50: Updated `react-router-dom` peer dependency to `^6.30.2` and explicitly disabled v7 future flags to suppress deprecation warnings.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/plugin-catalog-react@2.0.0
|
|
27
|
+
- @backstage/core-components@0.18.7
|
|
28
|
+
- @backstage/frontend-plugin-api@0.14.0
|
|
29
|
+
- @backstage/catalog-client@1.13.0
|
|
30
|
+
- @backstage/core-plugin-api@1.12.3
|
|
31
|
+
|
|
3
32
|
## 0.5.7-next.2
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
111
111
|
relationPairs: [string, string][] | undefined;
|
|
112
112
|
zoom: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
113
113
|
path: string | undefined;
|
|
114
|
+
title: string | undefined;
|
|
114
115
|
};
|
|
115
116
|
configInput: {
|
|
116
117
|
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
@@ -126,19 +127,39 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
126
127
|
selectedRelations?: string[] | undefined;
|
|
127
128
|
selectedKinds?: string[] | undefined;
|
|
128
129
|
showFilters?: boolean | undefined;
|
|
130
|
+
title?: string | undefined;
|
|
129
131
|
path?: string | undefined;
|
|
130
132
|
};
|
|
131
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
133
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
134
|
+
optional: true;
|
|
135
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {
|
|
136
|
+
optional: true;
|
|
137
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
132
138
|
optional: true;
|
|
133
139
|
}>;
|
|
134
|
-
inputs: {
|
|
140
|
+
inputs: {
|
|
141
|
+
pages: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
142
|
+
optional: true;
|
|
143
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.title", {
|
|
144
|
+
optional: true;
|
|
145
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
146
|
+
optional: true;
|
|
147
|
+
}>, {
|
|
148
|
+
singleton: false;
|
|
149
|
+
optional: false;
|
|
150
|
+
internal: false;
|
|
151
|
+
}>;
|
|
152
|
+
};
|
|
135
153
|
kind: "page";
|
|
136
154
|
name: undefined;
|
|
137
155
|
params: {
|
|
138
156
|
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
139
157
|
path: string;
|
|
140
|
-
|
|
158
|
+
title?: string;
|
|
159
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
160
|
+
loader?: () => Promise<react.JSX.Element>;
|
|
141
161
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
162
|
+
noHeader?: boolean;
|
|
142
163
|
};
|
|
143
164
|
}>;
|
|
144
165
|
}>;
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -61,12 +61,12 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/catalog-client": "1.
|
|
64
|
+
"@backstage/catalog-client": "1.13.1-next.0",
|
|
65
65
|
"@backstage/catalog-model": "1.7.6",
|
|
66
|
-
"@backstage/core-components": "0.18.
|
|
67
|
-
"@backstage/core-plugin-api": "1.12.
|
|
68
|
-
"@backstage/frontend-plugin-api": "0.14.
|
|
69
|
-
"@backstage/plugin-catalog-react": "2.0.
|
|
66
|
+
"@backstage/core-components": "0.18.8-next.0",
|
|
67
|
+
"@backstage/core-plugin-api": "1.12.4-next.0",
|
|
68
|
+
"@backstage/frontend-plugin-api": "0.14.2-next.0",
|
|
69
|
+
"@backstage/plugin-catalog-react": "2.0.1-next.0",
|
|
70
70
|
"@backstage/types": "1.2.2",
|
|
71
71
|
"@material-ui/core": "^4.12.2",
|
|
72
72
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"react-use": "^17.2.4"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "0.35.
|
|
82
|
-
"@backstage/core-app-api": "1.19.
|
|
83
|
-
"@backstage/dev-utils": "1.1.
|
|
84
|
-
"@backstage/frontend-test-utils": "0.5.
|
|
85
|
-
"@backstage/plugin-catalog": "1.33.
|
|
86
|
-
"@backstage/test-utils": "1.7.
|
|
81
|
+
"@backstage/cli": "0.35.5-next.0",
|
|
82
|
+
"@backstage/core-app-api": "1.19.6-next.0",
|
|
83
|
+
"@backstage/dev-utils": "1.1.21-next.0",
|
|
84
|
+
"@backstage/frontend-test-utils": "0.5.1-next.0",
|
|
85
|
+
"@backstage/plugin-catalog": "1.33.1-next.0",
|
|
86
|
+
"@backstage/test-utils": "1.7.16-next.0",
|
|
87
87
|
"@testing-library/dom": "^10.0.0",
|
|
88
88
|
"@testing-library/jest-dom": "^6.0.0",
|
|
89
89
|
"@testing-library/react": "^16.0.0",
|