@backstage/plugin-app-visualizer 0.0.0-nightly-20240816021916 → 0.0.0-nightly-20240818022051
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 +3 -3
- package/dist/index.d.ts +10 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-app-visualizer
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240818022051
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 72754db: Updated usage of `useRouteRef`, which can now always return `undefined`.
|
|
8
8
|
- c7603e8: Deprecate the old pattern of `create*Extension`, and replace it with the equivalent Blueprint implementation instead
|
|
9
9
|
- Updated dependencies
|
|
10
|
-
- @backstage/frontend-plugin-api@0.0.0-nightly-
|
|
11
|
-
- @backstage/core-components@0.0.0-nightly-
|
|
10
|
+
- @backstage/frontend-plugin-api@0.0.0-nightly-20240818022051
|
|
11
|
+
- @backstage/core-components@0.0.0-nightly-20240818022051
|
|
12
12
|
- @backstage/core-plugin-api@1.9.3
|
|
13
13
|
|
|
14
14
|
## 0.1.9-next.3
|
package/dist/index.d.ts
CHANGED
|
@@ -10,12 +10,20 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.BackstagePlugin<{
|
|
|
10
10
|
path?: string | undefined;
|
|
11
11
|
}, _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", {
|
|
12
12
|
optional: true;
|
|
13
|
-
}>, {},
|
|
13
|
+
}>, {}, {
|
|
14
|
+
kind: "page";
|
|
15
|
+
namespace: undefined;
|
|
16
|
+
name: undefined;
|
|
17
|
+
}>;
|
|
14
18
|
"nav-item:app-visualizer": _backstage_frontend_plugin_api.ExtensionDefinition<{}, {}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
15
19
|
title: string;
|
|
16
20
|
icon: _backstage_core_plugin_api.IconComponent;
|
|
17
21
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
18
|
-
}, "core.nav-item.target", {}>, {},
|
|
22
|
+
}, "core.nav-item.target", {}>, {}, {
|
|
23
|
+
kind: "nav-item";
|
|
24
|
+
namespace: undefined;
|
|
25
|
+
name: undefined;
|
|
26
|
+
}>;
|
|
19
27
|
}>;
|
|
20
28
|
|
|
21
29
|
export { visualizerPlugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-visualizer",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240818022051",
|
|
4
4
|
"description": "Visualizes the Backstage app structure",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"test": "backstage-cli package test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/core-components": "^0.0.0-nightly-
|
|
37
|
+
"@backstage/core-components": "^0.0.0-nightly-20240818022051",
|
|
38
38
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
39
|
-
"@backstage/frontend-plugin-api": "^0.0.0-nightly-
|
|
39
|
+
"@backstage/frontend-plugin-api": "^0.0.0-nightly-20240818022051",
|
|
40
40
|
"@material-ui/core": "^4.12.2",
|
|
41
41
|
"@material-ui/icons": "^4.9.1",
|
|
42
42
|
"@types/react": "^16.13.1 || ^17.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
45
|
+
"@backstage/cli": "^0.0.0-nightly-20240818022051"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|