@backstage/plugin-devtools 0.1.18 → 0.1.19-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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-devtools
2
2
 
3
+ ## 0.1.19-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - e969dc7: Move `@types/react` to a peer dependency.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.15.1-next.1
10
+ - @backstage/frontend-plugin-api@0.9.0-next.1
11
+ - @backstage/core-compat-api@0.3.1-next.1
12
+ - @backstage/core-plugin-api@1.10.0-next.1
13
+ - @backstage/plugin-permission-react@0.4.27-next.1
14
+ - @backstage/errors@1.2.4
15
+ - @backstage/plugin-devtools-common@0.1.12
16
+
17
+ ## 0.1.19-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/frontend-plugin-api@0.9.0-next.0
23
+ - @backstage/core-compat-api@0.3.1-next.0
24
+ - @backstage/core-components@0.15.1-next.0
25
+ - @backstage/core-plugin-api@1.10.0-next.0
26
+ - @backstage/errors@1.2.4
27
+ - @backstage/plugin-devtools-common@0.1.12
28
+ - @backstage/plugin-permission-react@0.4.27-next.0
29
+
3
30
  ## 0.1.18
4
31
 
5
32
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools__alpha",
3
- "version": "0.1.18",
3
+ "version": "0.1.19-next.1",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/alpha.d.ts CHANGED
@@ -8,16 +8,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
8
8
  }, {}, {
9
9
  "api:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
10
10
  kind: "api";
11
- namespace: undefined;
12
11
  name: undefined;
13
12
  config: {};
14
13
  configInput: {};
15
14
  output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
16
15
  inputs: {};
16
+ params: {
17
+ factory: _backstage_frontend_plugin_api.AnyApiFactory;
18
+ };
17
19
  }>;
18
20
  "page:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
19
21
  kind: "page";
20
- namespace: undefined;
21
22
  name: undefined;
22
23
  config: {
23
24
  path: string | undefined;
@@ -29,10 +30,14 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
29
30
  optional: true;
30
31
  }>;
31
32
  inputs: {};
33
+ params: {
34
+ defaultPath: string;
35
+ loader: () => Promise<JSX.Element>;
36
+ routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
37
+ };
32
38
  }>;
33
39
  "nav-item:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
34
40
  kind: "nav-item";
35
- namespace: undefined;
36
41
  name: undefined;
37
42
  config: {};
38
43
  configInput: {};
@@ -42,6 +47,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
42
47
  routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
43
48
  }, "core.nav-item.target", {}>;
44
49
  inputs: {};
50
+ params: {
51
+ title: string;
52
+ icon: _backstage_core_plugin_api.IconComponent;
53
+ routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
54
+ };
45
55
  }>;
46
56
  }>;
47
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools",
3
- "version": "0.1.18",
3
+ "version": "0.1.19-next.1",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "devtools",
@@ -28,6 +28,7 @@
28
28
  "default": "./dist/index.esm.js"
29
29
  },
30
30
  "./alpha": {
31
+ "backstage": "@backstage/FrontendPlugin",
31
32
  "import": "./dist/alpha.esm.js",
32
33
  "types": "./dist/alpha.d.ts",
33
34
  "default": "./dist/alpha.esm.js"
@@ -50,13 +51,13 @@
50
51
  "test": "backstage-cli package test"
51
52
  },
52
53
  "dependencies": {
53
- "@backstage/core-compat-api": "^0.3.0",
54
- "@backstage/core-components": "^0.15.0",
55
- "@backstage/core-plugin-api": "^1.9.4",
56
- "@backstage/errors": "^1.2.4",
57
- "@backstage/frontend-plugin-api": "^0.8.0",
58
- "@backstage/plugin-devtools-common": "^0.1.12",
59
- "@backstage/plugin-permission-react": "^0.4.26",
54
+ "@backstage/core-compat-api": "0.3.1-next.1",
55
+ "@backstage/core-components": "0.15.1-next.1",
56
+ "@backstage/core-plugin-api": "1.10.0-next.1",
57
+ "@backstage/errors": "1.2.4",
58
+ "@backstage/frontend-plugin-api": "0.9.0-next.1",
59
+ "@backstage/plugin-devtools-common": "0.1.12",
60
+ "@backstage/plugin-permission-react": "0.4.27-next.1",
60
61
  "@material-ui/core": "^4.9.13",
61
62
  "@material-ui/icons": "^4.9.1",
62
63
  "@material-ui/lab": "^4.0.0-alpha.57",
@@ -64,9 +65,13 @@
64
65
  "react-use": "^17.2.4"
65
66
  },
66
67
  "devDependencies": {
67
- "@backstage/cli": "^0.27.1",
68
- "@backstage/dev-utils": "^1.1.0",
69
- "@testing-library/jest-dom": "^6.0.0"
68
+ "@backstage/cli": "0.28.0-next.1",
69
+ "@backstage/dev-utils": "1.1.2-next.1",
70
+ "@testing-library/jest-dom": "^6.0.0",
71
+ "@types/react": "^18.0.0",
72
+ "react": "^18.0.2",
73
+ "react-dom": "^18.0.2",
74
+ "react-router-dom": "^6.3.0"
70
75
  },
71
76
  "peerDependencies": {
72
77
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
@@ -74,5 +79,10 @@
74
79
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
75
80
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
76
81
  },
82
+ "peerDependenciesMeta": {
83
+ "@types/react": {
84
+ "optional": true
85
+ }
86
+ },
77
87
  "module": "./dist/index.esm.js"
78
88
  }