@backstage/plugin-app-visualizer 0.2.2-next.1 → 0.2.3

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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-app-visualizer
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 3f6e04c: Tightened React Aria dependency version ranges from `^` to `~` to prevent unintended minor version upgrades.
8
+ - Updated dependencies
9
+ - @backstage/ui@0.14.2
10
+ - @backstage/frontend-plugin-api@0.16.2
11
+
12
+ ## 0.2.2
13
+
14
+ ### Patch Changes
15
+
16
+ - e220589: Updated `PluginHeaderActionBlueprint` usage to pass params as a plain object.
17
+ - Updated dependencies
18
+ - @backstage/ui@0.14.0
19
+ - @backstage/frontend-plugin-api@0.16.0
20
+ - @backstage/core-components@0.18.9
21
+ - @backstage/core-plugin-api@1.12.5
22
+
3
23
  ## 0.2.2-next.1
4
24
 
5
25
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -6,8 +6,12 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
6
6
  "nav-item:app-visualizer": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
7
7
  kind: "nav-item";
8
8
  name: undefined;
9
- config: {};
10
- configInput: {};
9
+ config: {
10
+ title: string | undefined;
11
+ };
12
+ configInput: {
13
+ title?: string | undefined;
14
+ };
11
15
  output: _backstage_frontend_plugin_api.ExtensionDataRef<{
12
16
  title: string;
13
17
  icon: _backstage_frontend_plugin_api.IconComponent;
@@ -28,8 +32,8 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
28
32
  title: string | undefined;
29
33
  };
30
34
  configInput: {
31
- title?: string | undefined;
32
35
  path?: string | undefined;
36
+ title?: string | undefined;
33
37
  };
34
38
  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", {
35
39
  optional: true;
@@ -79,8 +83,8 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
79
83
  title: string | undefined;
80
84
  };
81
85
  configInput: {
82
- title?: string | undefined;
83
86
  path?: string | undefined;
87
+ title?: string | undefined;
84
88
  };
85
89
  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", {
86
90
  optional: true;
@@ -104,8 +108,8 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
104
108
  title: string | undefined;
105
109
  };
106
110
  configInput: {
107
- title?: string | undefined;
108
111
  path?: string | undefined;
112
+ title?: string | undefined;
109
113
  };
110
114
  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", {
111
115
  optional: true;
@@ -129,8 +133,8 @@ declare const visualizerPlugin: _backstage_frontend_plugin_api.OverridableFronte
129
133
  title: string | undefined;
130
134
  };
131
135
  configInput: {
132
- title?: string | undefined;
133
136
  path?: string | undefined;
137
+ title?: string | undefined;
134
138
  };
135
139
  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", {
136
140
  optional: true;
@@ -1,5 +1,5 @@
1
1
  var name = "@backstage/plugin-app-visualizer";
2
- var version = "0.2.2-next.1";
2
+ var version = "0.2.3";
3
3
  var description = "Visualizes the Backstage app structure";
4
4
  var backstage = {
5
5
  role: "frontend-plugin",
@@ -38,7 +38,7 @@ var dependencies = {
38
38
  "@backstage/frontend-plugin-api": "workspace:^",
39
39
  "@backstage/ui": "workspace:^",
40
40
  "@remixicon/react": "^4.6.0",
41
- "react-aria-components": "^1.14.0"
41
+ "react-aria-components": "~1.17.0"
42
42
  };
43
43
  var devDependencies = {
44
44
  "@backstage/cli": "workspace:^",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-visualizer",
3
- "version": "0.2.2-next.1",
3
+ "version": "0.2.3",
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.9-next.0",
41
- "@backstage/core-plugin-api": "1.12.5-next.1",
42
- "@backstage/frontend-plugin-api": "0.16.0-next.1",
43
- "@backstage/ui": "0.14.0-next.1",
40
+ "@backstage/core-components": "^0.18.9",
41
+ "@backstage/core-plugin-api": "^1.12.5",
42
+ "@backstage/frontend-plugin-api": "^0.16.2",
43
+ "@backstage/ui": "^0.14.2",
44
44
  "@remixicon/react": "^4.6.0",
45
- "react-aria-components": "^1.14.0"
45
+ "react-aria-components": "~1.17.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "0.36.1-next.1",
49
- "@backstage/frontend-dev-utils": "0.1.1-next.1",
48
+ "@backstage/cli": "^0.36.1",
49
+ "@backstage/frontend-dev-utils": "^0.1.1",
50
50
  "@types/react": "^18.0.0",
51
51
  "react": "^18.0.2",
52
52
  "react-dom": "^18.0.2",