@backstage/plugin-devtools 0.1.3 → 0.1.4-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/index.d.ts +10 -9
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-plugin-api@1.6.0-next.0
|
|
9
|
+
- @backstage/core-components@0.13.5-next.0
|
|
10
|
+
- @backstage/errors@1.2.1
|
|
11
|
+
- @backstage/theme@0.4.1
|
|
12
|
+
- @backstage/types@1.1.0
|
|
13
|
+
- @backstage/plugin-devtools-common@0.1.3
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.15-next.0
|
|
15
|
+
|
|
3
16
|
## 0.1.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import React__default from 'react';
|
|
2
4
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
5
|
import { TabProps } from '@material-ui/core';
|
|
4
|
-
import React from 'react';
|
|
5
6
|
|
|
6
7
|
/** @public */
|
|
7
8
|
declare const devToolsPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
8
9
|
root: _backstage_core_plugin_api.RouteRef<undefined>;
|
|
9
10
|
}, {}, {}>;
|
|
10
11
|
/** @public */
|
|
11
|
-
declare const DevToolsPage: () => JSX.Element;
|
|
12
|
+
declare const DevToolsPage: () => React.JSX.Element;
|
|
12
13
|
|
|
13
14
|
/** @public */
|
|
14
|
-
declare const ConfigContent: () => JSX.Element;
|
|
15
|
+
declare const ConfigContent: () => React__default.JSX.Element;
|
|
15
16
|
|
|
16
17
|
/** @public */
|
|
17
|
-
declare const InfoContent: () => JSX.Element;
|
|
18
|
+
declare const InfoContent: () => React__default.JSX.Element;
|
|
18
19
|
|
|
19
20
|
/** @public */
|
|
20
|
-
declare const ExternalDependenciesContent: () => JSX.Element;
|
|
21
|
+
declare const ExternalDependenciesContent: () => React__default.JSX.Element;
|
|
21
22
|
|
|
22
23
|
/** @public */
|
|
23
24
|
type SubRoute = {
|
|
24
25
|
path: string;
|
|
25
26
|
title: string;
|
|
26
27
|
children: JSX.Element;
|
|
27
|
-
tabProps?: TabProps<
|
|
28
|
-
component?:
|
|
28
|
+
tabProps?: TabProps<React__default.ElementType, {
|
|
29
|
+
component?: React__default.ElementType;
|
|
29
30
|
}>;
|
|
30
31
|
};
|
|
31
32
|
/** @public */
|
|
32
33
|
type DevToolsLayoutProps = {
|
|
33
34
|
title?: string;
|
|
34
35
|
subtitle?: string;
|
|
35
|
-
children?:
|
|
36
|
+
children?: React__default.ReactNode;
|
|
36
37
|
};
|
|
37
38
|
/**
|
|
38
39
|
* DevTools is a compound component, which allows you to define a custom layout
|
|
@@ -48,7 +49,7 @@ type DevToolsLayoutProps = {
|
|
|
48
49
|
* @public
|
|
49
50
|
*/
|
|
50
51
|
declare const DevToolsLayout: {
|
|
51
|
-
({ children, title, subtitle, }: DevToolsLayoutProps): JSX.Element;
|
|
52
|
+
({ children, title, subtitle, }: DevToolsLayoutProps): React__default.JSX.Element;
|
|
52
53
|
Route: (props: SubRoute) => null;
|
|
53
54
|
};
|
|
54
55
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4-next.0",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/core-components": "^0.13.
|
|
32
|
-
"@backstage/core-plugin-api": "^1.
|
|
31
|
+
"@backstage/core-components": "^0.13.5-next.0",
|
|
32
|
+
"@backstage/core-plugin-api": "^1.6.0-next.0",
|
|
33
33
|
"@backstage/errors": "^1.2.1",
|
|
34
34
|
"@backstage/plugin-devtools-common": "^0.1.3",
|
|
35
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
35
|
+
"@backstage/plugin-permission-react": "^0.4.15-next.0",
|
|
36
36
|
"@backstage/theme": "^0.4.1",
|
|
37
37
|
"@backstage/types": "^1.1.0",
|
|
38
38
|
"@material-ui/core": "^4.9.13",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.22.
|
|
52
|
-
"@backstage/core-app-api": "^1.
|
|
53
|
-
"@backstage/dev-utils": "^1.0.
|
|
54
|
-
"@backstage/test-utils": "^1.4.
|
|
51
|
+
"@backstage/cli": "^0.22.12-next.0",
|
|
52
|
+
"@backstage/core-app-api": "^1.10.0-next.0",
|
|
53
|
+
"@backstage/dev-utils": "^1.0.20-next.0",
|
|
54
|
+
"@backstage/test-utils": "^1.4.3-next.0",
|
|
55
55
|
"@testing-library/jest-dom": "^5.10.1",
|
|
56
56
|
"@testing-library/react": "^12.1.3",
|
|
57
57
|
"@testing-library/user-event": "^14.0.0",
|