@backstage/plugin-app-visualizer 0.1.25-next.2 → 0.1.25
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 +12 -0
- package/dist/index.d.ts +2 -2
- package/dist/package.json.esm.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-app-visualizer
|
|
2
2
|
|
|
3
|
+
## 0.1.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e81b3f0: Improve tree visualizer to use a horizontal layout and fill the content space.
|
|
8
|
+
- 722e2df: Migrated to use `@backstage/ui`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/ui@0.9.0
|
|
11
|
+
- @backstage/frontend-plugin-api@0.13.0
|
|
12
|
+
- @backstage/core-components@0.18.3
|
|
13
|
+
- @backstage/core-plugin-api@1.12.0
|
|
14
|
+
|
|
3
15
|
## 0.1.25-next.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
|
4
4
|
|
|
5
5
|
/** @public */
|
|
6
6
|
declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
|
|
7
|
-
"nav-item:app-visualizer": _backstage_frontend_plugin_api.
|
|
7
|
+
"nav-item:app-visualizer": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
8
8
|
kind: "nav-item";
|
|
9
9
|
name: undefined;
|
|
10
10
|
config: {};
|
|
@@ -21,7 +21,7 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
|
|
|
21
21
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
22
22
|
};
|
|
23
23
|
}>;
|
|
24
|
-
"page:app-visualizer": _backstage_frontend_plugin_api.
|
|
24
|
+
"page:app-visualizer": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
25
25
|
kind: "page";
|
|
26
26
|
name: undefined;
|
|
27
27
|
config: {
|
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.25
|
|
3
|
+
"version": "0.1.25",
|
|
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": "0.18.3
|
|
41
|
-
"@backstage/core-plugin-api": "1.
|
|
42
|
-
"@backstage/frontend-plugin-api": "0.
|
|
43
|
-
"@backstage/ui": "0.9.0
|
|
40
|
+
"@backstage/core-components": "^0.18.3",
|
|
41
|
+
"@backstage/core-plugin-api": "^1.12.0",
|
|
42
|
+
"@backstage/frontend-plugin-api": "^0.13.0",
|
|
43
|
+
"@backstage/ui": "^0.9.0",
|
|
44
44
|
"@remixicon/react": "^4.6.0",
|
|
45
45
|
"react-aria-components": "^1.13.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "0.34.5
|
|
49
|
-
"@backstage/frontend-defaults": "0.3.3
|
|
48
|
+
"@backstage/cli": "^0.34.5",
|
|
49
|
+
"@backstage/frontend-defaults": "^0.3.3",
|
|
50
50
|
"@types/react": "^18.0.0",
|
|
51
51
|
"react": "^18.0.2",
|
|
52
52
|
"react-dom": "^18.0.2",
|