@backstage/plugin-devtools 0.1.18 → 0.1.19-next.0
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 +13 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +13 -3
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.19-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
9
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
10
|
+
- @backstage/core-components@0.15.1-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/plugin-devtools-common@0.1.12
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.27-next.0
|
|
15
|
+
|
|
3
16
|
## 0.1.18
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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.
|
|
3
|
+
"version": "0.1.19-next.0",
|
|
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.
|
|
54
|
+
"@backstage/core-compat-api": "^0.3.1-next.0",
|
|
55
|
+
"@backstage/core-components": "^0.15.1-next.0",
|
|
56
|
+
"@backstage/core-plugin-api": "^1.10.0-next.0",
|
|
56
57
|
"@backstage/errors": "^1.2.4",
|
|
57
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
58
|
+
"@backstage/frontend-plugin-api": "^0.9.0-next.0",
|
|
58
59
|
"@backstage/plugin-devtools-common": "^0.1.12",
|
|
59
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
60
|
+
"@backstage/plugin-permission-react": "^0.4.27-next.0",
|
|
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,8 +65,8 @@
|
|
|
64
65
|
"react-use": "^17.2.4"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
|
-
"@backstage/cli": "^0.
|
|
68
|
-
"@backstage/dev-utils": "^1.1.0",
|
|
68
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
69
|
+
"@backstage/dev-utils": "^1.1.1-next.0",
|
|
69
70
|
"@testing-library/jest-dom": "^6.0.0"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|