@backstage/plugin-app-visualizer 0.1.25 → 0.1.26-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 +19 -0
- package/dist/index.d.ts +2 -3
- package/dist/package.json.esm.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-app-visualizer
|
|
2
2
|
|
|
3
|
+
## 0.1.26-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/ui@0.10.0-next.1
|
|
9
|
+
- @backstage/core-components@0.18.4-next.1
|
|
10
|
+
|
|
11
|
+
## 0.1.26-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/ui@0.9.1-next.0
|
|
18
|
+
- @backstage/frontend-plugin-api@0.13.2-next.0
|
|
19
|
+
- @backstage/core-plugin-api@1.12.1-next.0
|
|
20
|
+
- @backstage/core-components@0.18.4-next.0
|
|
21
|
+
|
|
3
22
|
## 0.1.25
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
3
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
4
3
|
|
|
5
4
|
/** @public */
|
|
6
5
|
declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
|
|
@@ -11,13 +10,13 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
|
|
|
11
10
|
configInput: {};
|
|
12
11
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
13
12
|
title: string;
|
|
14
|
-
icon:
|
|
13
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
15
14
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
16
15
|
}, "core.nav-item.target", {}>;
|
|
17
16
|
inputs: {};
|
|
18
17
|
params: {
|
|
19
18
|
title: string;
|
|
20
|
-
icon:
|
|
19
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
21
20
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
22
21
|
};
|
|
23
22
|
}>;
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-visualizer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26-next.1",
|
|
4
4
|
"description": "Visualizes the Backstage app structure",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/core-components": "
|
|
41
|
-
"@backstage/core-plugin-api": "
|
|
42
|
-
"@backstage/frontend-plugin-api": "
|
|
43
|
-
"@backstage/ui": "
|
|
40
|
+
"@backstage/core-components": "0.18.4-next.1",
|
|
41
|
+
"@backstage/core-plugin-api": "1.12.1-next.0",
|
|
42
|
+
"@backstage/frontend-plugin-api": "0.13.2-next.0",
|
|
43
|
+
"@backstage/ui": "0.10.0-next.1",
|
|
44
44
|
"@remixicon/react": "^4.6.0",
|
|
45
45
|
"react-aria-components": "^1.13.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "
|
|
49
|
-
"@backstage/frontend-defaults": "
|
|
48
|
+
"@backstage/cli": "0.34.6-next.1",
|
|
49
|
+
"@backstage/frontend-defaults": "0.3.4-next.0",
|
|
50
50
|
"@types/react": "^18.0.0",
|
|
51
51
|
"react": "^18.0.2",
|
|
52
52
|
"react-dom": "^18.0.2",
|