@backstage/plugin-devtools 0.1.20 → 0.1.22-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/dist/alpha/plugin.esm.js +2 -2
- package/dist/alpha.d.ts +11 -11
- package/dist/components/DevToolsLayout/DevToolsLayout.esm.js +1 -1
- package/dist/plugin.esm.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.22-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.3-next.0
|
|
9
|
+
- @backstage/core-compat-api@0.3.4-next.0
|
|
10
|
+
- @backstage/core-components@0.16.2-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.1
|
|
12
|
+
- @backstage/errors@1.2.5
|
|
13
|
+
- @backstage/plugin-devtools-common@0.1.13
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.28
|
|
15
|
+
|
|
3
16
|
## 0.1.20
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/alpha/plugin.esm.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ApiBlueprint, createApiFactory,
|
|
2
|
+
import { ApiBlueprint, createApiFactory, discoveryApiRef, fetchApiRef, PageBlueprint, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import { devToolsApiRef } from '../api/DevToolsApi.esm.js';
|
|
4
4
|
import { DevToolsClient } from '../api/DevToolsClient.esm.js';
|
|
5
|
-
import {
|
|
5
|
+
import { convertLegacyRouteRef, compatWrapper } from '@backstage/core-compat-api';
|
|
6
6
|
import BuildIcon from '@material-ui/icons/Build';
|
|
7
7
|
import { rootRouteRef } from '../routes.esm.js';
|
|
8
8
|
|
package/dist/alpha.d.ts
CHANGED
|
@@ -6,17 +6,6 @@ import React__default from 'react';
|
|
|
6
6
|
declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
7
7
|
root: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
8
8
|
}, {}, {
|
|
9
|
-
"api:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
|
-
kind: "api";
|
|
11
|
-
name: undefined;
|
|
12
|
-
config: {};
|
|
13
|
-
configInput: {};
|
|
14
|
-
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
15
|
-
inputs: {};
|
|
16
|
-
params: {
|
|
17
|
-
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
18
|
-
};
|
|
19
|
-
}>;
|
|
20
9
|
"page:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
21
10
|
kind: "page";
|
|
22
11
|
name: undefined;
|
|
@@ -53,6 +42,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
53
42
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
54
43
|
};
|
|
55
44
|
}>;
|
|
45
|
+
"api:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
46
|
+
kind: "api";
|
|
47
|
+
name: undefined;
|
|
48
|
+
config: {};
|
|
49
|
+
configInput: {};
|
|
50
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
51
|
+
inputs: {};
|
|
52
|
+
params: {
|
|
53
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
54
|
+
};
|
|
55
|
+
}>;
|
|
56
56
|
}>;
|
|
57
57
|
|
|
58
58
|
export { _default as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Page, Header, RoutedTabs } from '@backstage/core-components';
|
|
2
|
-
import {
|
|
2
|
+
import { attachComponentData, useElementFilter } from '@backstage/core-plugin-api';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
|
|
5
5
|
const dataKey = "plugin.devtools.devtoolsLayoutRoute";
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createPlugin, createApiFactory,
|
|
1
|
+
import { createPlugin, createApiFactory, discoveryApiRef, fetchApiRef, createRoutableExtension } from '@backstage/core-plugin-api';
|
|
2
2
|
import { devToolsApiRef } from './api/DevToolsApi.esm.js';
|
|
3
3
|
import { DevToolsClient } from './api/DevToolsClient.esm.js';
|
|
4
4
|
import { rootRouteRef } from './routes.esm.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "devtools",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"test": "backstage-cli package test"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@backstage/core-compat-api": "
|
|
64
|
-
"@backstage/core-components": "
|
|
65
|
-
"@backstage/core-plugin-api": "
|
|
66
|
-
"@backstage/errors": "
|
|
67
|
-
"@backstage/frontend-plugin-api": "
|
|
68
|
-
"@backstage/plugin-devtools-common": "
|
|
69
|
-
"@backstage/plugin-permission-react": "
|
|
63
|
+
"@backstage/core-compat-api": "0.3.4-next.0",
|
|
64
|
+
"@backstage/core-components": "0.16.2-next.0",
|
|
65
|
+
"@backstage/core-plugin-api": "1.10.1",
|
|
66
|
+
"@backstage/errors": "1.2.5",
|
|
67
|
+
"@backstage/frontend-plugin-api": "0.9.3-next.0",
|
|
68
|
+
"@backstage/plugin-devtools-common": "0.1.13",
|
|
69
|
+
"@backstage/plugin-permission-react": "0.4.28",
|
|
70
70
|
"@material-ui/core": "^4.9.13",
|
|
71
71
|
"@material-ui/icons": "^4.9.1",
|
|
72
72
|
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"react-use": "^17.2.4"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/cli": "
|
|
78
|
-
"@backstage/dev-utils": "
|
|
77
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
78
|
+
"@backstage/dev-utils": "1.1.5-next.0",
|
|
79
79
|
"@testing-library/jest-dom": "^6.0.0",
|
|
80
80
|
"@types/react": "^18.0.0",
|
|
81
81
|
"react": "^18.0.2",
|