@backstage/plugin-devtools 0.1.38-next.0 → 0.1.38-next.2
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 +25 -0
- package/dist/components/Content/ConfigContent/ConfigContent.esm.js +1 -1
- package/dist/components/Content/index.esm.js +7 -3
- package/dist/components/Content/index.esm.js.map +1 -1
- package/dist/components/DevToolsPage/index.esm.js +5 -1
- package/dist/components/DevToolsPage/index.esm.js.map +1 -1
- package/dist/package.json.esm.js +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.38-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/ui@0.14.0-next.2
|
|
9
|
+
- @backstage/errors@1.3.0-next.0
|
|
10
|
+
- @backstage/core-components@0.18.9-next.1
|
|
11
|
+
- @backstage/core-compat-api@0.5.10-next.2
|
|
12
|
+
- @backstage/core-plugin-api@1.12.5-next.2
|
|
13
|
+
- @backstage/frontend-plugin-api@0.16.0-next.2
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.42-next.1
|
|
15
|
+
- @backstage/plugin-devtools-common@0.1.24-next.0
|
|
16
|
+
|
|
17
|
+
## 0.1.38-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/ui@0.14.0-next.1
|
|
23
|
+
- @backstage/frontend-plugin-api@0.16.0-next.1
|
|
24
|
+
- @backstage/core-compat-api@0.5.10-next.1
|
|
25
|
+
- @backstage/core-components@0.18.9-next.0
|
|
26
|
+
- @backstage/core-plugin-api@1.12.5-next.1
|
|
27
|
+
|
|
3
28
|
## 0.1.38-next.0
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -3,7 +3,7 @@ import { Progress, WarningPanel } from '@backstage/core-components';
|
|
|
3
3
|
import Box from '@material-ui/core/Box';
|
|
4
4
|
import Paper from '@material-ui/core/Paper';
|
|
5
5
|
import Typography from '@material-ui/core/Typography';
|
|
6
|
-
import {
|
|
6
|
+
import { useTheme, makeStyles, createStyles } from '@material-ui/core/styles';
|
|
7
7
|
import Alert from '@material-ui/lab/Alert';
|
|
8
8
|
import ReactJson from 'react-json-view';
|
|
9
9
|
import { useConfig } from '../../../hooks/useConfig.esm.js';
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { ConfigContent } from './ConfigContent/ConfigContent.esm.js';
|
|
2
|
+
import { InfoContent } from './InfoContent/InfoContent.esm.js';
|
|
3
3
|
export { ExternalDependenciesContent } from './ExternalDependenciesContent/ExternalDependenciesContent.esm.js';
|
|
4
|
-
|
|
4
|
+
import { ScheduledTasksContent } from './ScheduledTasksContent/ScheduledTasksContent.esm.js';
|
|
5
5
|
export { ScheduledTaskDetailPanel } from './ScheduledTasksContent/ScheduledTaskDetailedPanel.esm.js';
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
export { ConfigContent, InfoContent, ScheduledTasksContent };
|
|
6
10
|
//# sourceMappingURL=index.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.38-next.
|
|
3
|
+
"version": "0.1.38-next.2",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "devtools",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/core-compat-api": "0.5.10-next.
|
|
69
|
-
"@backstage/core-components": "0.18.9-next.
|
|
70
|
-
"@backstage/core-plugin-api": "1.12.5-next.
|
|
71
|
-
"@backstage/errors": "1.
|
|
72
|
-
"@backstage/frontend-plugin-api": "0.
|
|
73
|
-
"@backstage/plugin-devtools-common": "0.1.
|
|
74
|
-
"@backstage/plugin-permission-react": "0.4.42-next.
|
|
75
|
-
"@backstage/ui": "0.14.0-next.
|
|
68
|
+
"@backstage/core-compat-api": "0.5.10-next.2",
|
|
69
|
+
"@backstage/core-components": "0.18.9-next.1",
|
|
70
|
+
"@backstage/core-plugin-api": "1.12.5-next.2",
|
|
71
|
+
"@backstage/errors": "1.3.0-next.0",
|
|
72
|
+
"@backstage/frontend-plugin-api": "0.16.0-next.2",
|
|
73
|
+
"@backstage/plugin-devtools-common": "0.1.24-next.0",
|
|
74
|
+
"@backstage/plugin-permission-react": "0.4.42-next.1",
|
|
75
|
+
"@backstage/ui": "0.14.0-next.2",
|
|
76
76
|
"@material-ui/core": "^4.9.13",
|
|
77
77
|
"@material-ui/icons": "^4.9.1",
|
|
78
78
|
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"react-use": "^17.2.4"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@backstage/cli": "0.36.1-next.
|
|
85
|
-
"@backstage/dev-utils": "1.1.22-next.
|
|
84
|
+
"@backstage/cli": "0.36.1-next.2",
|
|
85
|
+
"@backstage/dev-utils": "1.1.22-next.2",
|
|
86
86
|
"@testing-library/jest-dom": "^6.0.0",
|
|
87
87
|
"@types/lodash": "^4.14.151",
|
|
88
88
|
"@types/react": "^18.0.0",
|