@backstage/plugin-home 0.5.8-next.3 → 0.5.9-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 +35 -0
- package/dist/index.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.5.9-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.5-next.0
|
|
9
|
+
- @backstage/core-plugin-api@1.7.0-next.0
|
|
10
|
+
- @backstage/core-components@0.13.6-next.0
|
|
11
|
+
- @backstage/config@1.1.0
|
|
12
|
+
- @backstage/plugin-home-react@0.1.4-next.0
|
|
13
|
+
- @backstage/catalog-model@1.4.2
|
|
14
|
+
- @backstage/theme@0.4.2
|
|
15
|
+
|
|
16
|
+
## 0.5.8
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 2bc96ce69eea: Fixed a bug where customizable home page cards would render missing their normal borders.
|
|
21
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
22
|
+
- 98bb77c1f0b8: Align zod dependency to align with other packages.
|
|
23
|
+
- 8cec7664e146: Removed `@types/node` dependency
|
|
24
|
+
- b16c341ced45: Updated dependency `@rjsf/utils` to `5.13.0`.
|
|
25
|
+
Updated dependency `@rjsf/core-v5` to `npm:@rjsf/core@5.13.0`.
|
|
26
|
+
Updated dependency `@rjsf/material-ui-v5` to `npm:@rjsf/material-ui@5.13.0`.
|
|
27
|
+
Updated dependency `@rjsf/validator-ajv8` to `5.13.0`.
|
|
28
|
+
- 1853ffa09b50: Allow specifying static widgets to custom home page
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/plugin-home-react@0.1.3
|
|
31
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
32
|
+
- @backstage/core-components@0.13.5
|
|
33
|
+
- @backstage/config@1.1.0
|
|
34
|
+
- @backstage/catalog-model@1.4.2
|
|
35
|
+
- @backstage/core-plugin-api@1.6.0
|
|
36
|
+
- @backstage/theme@0.4.2
|
|
37
|
+
|
|
3
38
|
## 0.5.8-next.3
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ type WelcomeTitleLanguageProps = {
|
|
|
35
35
|
/** @public */
|
|
36
36
|
declare const homePlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
37
37
|
root: _backstage_core_plugin_api.RouteRef<undefined>;
|
|
38
|
-
}, {}
|
|
38
|
+
}, {}>;
|
|
39
39
|
/** @public */
|
|
40
40
|
declare const HomepageCompositionRoot: (props: {
|
|
41
41
|
title?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
3
|
"description": "A Backstage plugin that helps you build a home page",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.9-next.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"clean": "backstage-cli package clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/catalog-model": "^1.4.2
|
|
38
|
-
"@backstage/config": "^1.1.0
|
|
39
|
-
"@backstage/core-components": "^0.13.
|
|
40
|
-
"@backstage/core-plugin-api": "^1.
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.8.
|
|
42
|
-
"@backstage/plugin-home-react": "^0.1.
|
|
43
|
-
"@backstage/theme": "^0.4.2
|
|
37
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
38
|
+
"@backstage/config": "^1.1.0",
|
|
39
|
+
"@backstage/core-components": "^0.13.6-next.0",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.7.0-next.0",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.8.5-next.0",
|
|
42
|
+
"@backstage/plugin-home-react": "^0.1.4-next.0",
|
|
43
|
+
"@backstage/theme": "^0.4.2",
|
|
44
44
|
"@material-ui/core": "^4.12.2",
|
|
45
45
|
"@material-ui/icons": "^4.9.1",
|
|
46
46
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/cli": "^0.
|
|
65
|
-
"@backstage/core-app-api": "^1.10.
|
|
66
|
-
"@backstage/dev-utils": "^1.0.
|
|
67
|
-
"@backstage/test-utils": "^1.4.
|
|
64
|
+
"@backstage/cli": "^0.23.0-next.0",
|
|
65
|
+
"@backstage/core-app-api": "^1.10.1-next.0",
|
|
66
|
+
"@backstage/dev-utils": "^1.0.22-next.0",
|
|
67
|
+
"@backstage/test-utils": "^1.4.4-next.0",
|
|
68
68
|
"@testing-library/dom": "^8.0.0",
|
|
69
69
|
"@testing-library/jest-dom": "^5.10.1",
|
|
70
70
|
"@testing-library/react": "^12.1.3",
|