@backstage/plugin-home 0.7.11 → 0.7.12-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 +30 -3
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +5 -1
- package/package.json +27 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
-
## 0.7.
|
|
3
|
+
## 0.7.12-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/
|
|
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/core-app-api@1.15.1-next.1
|
|
14
|
+
- @backstage/plugin-catalog-react@1.14.0-next.1
|
|
15
|
+
- @backstage/plugin-home-react@0.1.18-next.1
|
|
16
|
+
- @backstage/theme@0.5.8-next.0
|
|
17
|
+
- @backstage/catalog-client@1.7.0
|
|
18
|
+
- @backstage/catalog-model@1.7.0
|
|
19
|
+
- @backstage/config@1.2.0
|
|
20
|
+
|
|
21
|
+
## 0.7.11-next.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
27
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
28
|
+
- @backstage/core-components@0.15.1-next.0
|
|
29
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
30
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
31
|
+
- @backstage/catalog-client@1.7.0
|
|
32
|
+
- @backstage/catalog-model@1.7.0
|
|
33
|
+
- @backstage/config@1.2.0
|
|
34
|
+
- @backstage/core-app-api@1.15.1-next.0
|
|
35
|
+
- @backstage/theme@0.5.7
|
|
36
|
+
- @backstage/plugin-home-react@0.1.18-next.0
|
|
10
37
|
|
|
11
38
|
## 0.7.10
|
|
12
39
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -30,8 +30,12 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
30
30
|
}>;
|
|
31
31
|
};
|
|
32
32
|
kind: "page";
|
|
33
|
-
namespace: undefined;
|
|
34
33
|
name: undefined;
|
|
34
|
+
params: {
|
|
35
|
+
defaultPath: string;
|
|
36
|
+
loader: () => Promise<JSX.Element>;
|
|
37
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
38
|
+
};
|
|
35
39
|
}>;
|
|
36
40
|
}>;
|
|
37
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12-next.1",
|
|
4
4
|
"description": "A Backstage plugin that helps you build a home page",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"default": "./dist/index.esm.js"
|
|
33
33
|
},
|
|
34
34
|
"./alpha": {
|
|
35
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
35
36
|
"import": "./dist/alpha.esm.js",
|
|
36
37
|
"types": "./dist/alpha.d.ts",
|
|
37
38
|
"default": "./dist/alpha.esm.js"
|
|
@@ -55,17 +56,17 @@
|
|
|
55
56
|
"test": "backstage-cli package test"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@backstage/catalog-client": "
|
|
59
|
-
"@backstage/catalog-model": "
|
|
60
|
-
"@backstage/config": "
|
|
61
|
-
"@backstage/core-app-api": "
|
|
62
|
-
"@backstage/core-compat-api": "
|
|
63
|
-
"@backstage/core-components": "
|
|
64
|
-
"@backstage/core-plugin-api": "
|
|
65
|
-
"@backstage/frontend-plugin-api": "
|
|
66
|
-
"@backstage/plugin-catalog-react": "
|
|
67
|
-
"@backstage/plugin-home-react": "
|
|
68
|
-
"@backstage/theme": "
|
|
59
|
+
"@backstage/catalog-client": "1.7.0",
|
|
60
|
+
"@backstage/catalog-model": "1.7.0",
|
|
61
|
+
"@backstage/config": "1.2.0",
|
|
62
|
+
"@backstage/core-app-api": "1.15.1-next.1",
|
|
63
|
+
"@backstage/core-compat-api": "0.3.1-next.1",
|
|
64
|
+
"@backstage/core-components": "0.15.1-next.1",
|
|
65
|
+
"@backstage/core-plugin-api": "1.10.0-next.1",
|
|
66
|
+
"@backstage/frontend-plugin-api": "0.9.0-next.1",
|
|
67
|
+
"@backstage/plugin-catalog-react": "1.14.0-next.1",
|
|
68
|
+
"@backstage/plugin-home-react": "0.1.18-next.1",
|
|
69
|
+
"@backstage/theme": "0.5.8-next.0",
|
|
69
70
|
"@material-ui/core": "^4.12.2",
|
|
70
71
|
"@material-ui/icons": "^4.9.1",
|
|
71
72
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -73,7 +74,6 @@
|
|
|
73
74
|
"@rjsf/material-ui": "5.21.1",
|
|
74
75
|
"@rjsf/utils": "5.21.1",
|
|
75
76
|
"@rjsf/validator-ajv8": "5.21.1",
|
|
76
|
-
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
77
77
|
"lodash": "^4.17.21",
|
|
78
78
|
"luxon": "^3.4.3",
|
|
79
79
|
"react-grid-layout": "1.3.4",
|
|
@@ -82,20 +82,30 @@
|
|
|
82
82
|
"zod": "^3.22.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/cli": "
|
|
86
|
-
"@backstage/dev-utils": "
|
|
87
|
-
"@backstage/test-utils": "
|
|
85
|
+
"@backstage/cli": "0.28.0-next.1",
|
|
86
|
+
"@backstage/dev-utils": "1.1.2-next.1",
|
|
87
|
+
"@backstage/test-utils": "1.6.1-next.1",
|
|
88
88
|
"@testing-library/dom": "^10.0.0",
|
|
89
89
|
"@testing-library/jest-dom": "^6.0.0",
|
|
90
90
|
"@testing-library/react": "^16.0.0",
|
|
91
91
|
"@testing-library/user-event": "^14.0.0",
|
|
92
|
-
"@types/react
|
|
92
|
+
"@types/react": "^18.0.0",
|
|
93
|
+
"@types/react-grid-layout": "^1.3.2",
|
|
94
|
+
"react": "^18.0.2",
|
|
95
|
+
"react-dom": "^18.0.2",
|
|
96
|
+
"react-router-dom": "^6.3.0"
|
|
93
97
|
},
|
|
94
98
|
"peerDependencies": {
|
|
99
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
95
100
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
96
101
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
97
102
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
98
103
|
},
|
|
104
|
+
"peerDependenciesMeta": {
|
|
105
|
+
"@types/react": {
|
|
106
|
+
"optional": true
|
|
107
|
+
}
|
|
108
|
+
},
|
|
99
109
|
"configSchema": "config.d.ts",
|
|
100
110
|
"module": "./dist/index.esm.js"
|
|
101
111
|
}
|