@backstage/plugin-home 0.7.9 → 0.7.10-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 +18 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +17 -17
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.7.10-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.8.0-next.0
|
|
10
|
+
- @backstage/core-compat-api@0.2.9-next.0
|
|
11
|
+
- @backstage/plugin-catalog-react@1.12.4-next.0
|
|
12
|
+
- @backstage/catalog-client@1.6.6
|
|
13
|
+
- @backstage/catalog-model@1.6.0
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/core-app-api@1.14.2
|
|
16
|
+
- @backstage/core-components@0.14.10
|
|
17
|
+
- @backstage/core-plugin-api@1.9.3
|
|
18
|
+
- @backstage/theme@0.5.6
|
|
19
|
+
- @backstage/plugin-home-react@0.1.16
|
|
20
|
+
|
|
3
21
|
## 0.7.9
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -10,25 +10,25 @@ declare const titleExtensionDataRef: _backstage_frontend_plugin_api.Configurable
|
|
|
10
10
|
*/
|
|
11
11
|
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{}, {}, {
|
|
12
12
|
"page:home": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
21
|
-
optional: true;
|
|
22
|
-
}>, {
|
|
23
|
-
props: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {
|
|
24
|
-
optional: true;
|
|
25
|
-
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "title", {
|
|
26
|
-
optional: true;
|
|
27
|
-
}>, {
|
|
28
|
-
singleton: true;
|
|
13
|
+
config: {
|
|
14
|
+
path: string | undefined;
|
|
15
|
+
};
|
|
16
|
+
configInput: {
|
|
17
|
+
path?: string | undefined;
|
|
18
|
+
};
|
|
19
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
29
20
|
optional: true;
|
|
30
21
|
}>;
|
|
31
|
-
|
|
22
|
+
inputs: {
|
|
23
|
+
props: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {
|
|
24
|
+
optional: true;
|
|
25
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "title", {
|
|
26
|
+
optional: true;
|
|
27
|
+
}>, {
|
|
28
|
+
singleton: true;
|
|
29
|
+
optional: true;
|
|
30
|
+
}>;
|
|
31
|
+
};
|
|
32
32
|
kind: "page";
|
|
33
33
|
namespace: undefined;
|
|
34
34
|
name: undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10-next.0",
|
|
4
4
|
"description": "A Backstage plugin that helps you build a home page",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"@backstage/catalog-model": "^1.6.0",
|
|
60
60
|
"@backstage/config": "^1.2.0",
|
|
61
61
|
"@backstage/core-app-api": "^1.14.2",
|
|
62
|
-
"@backstage/core-compat-api": "^0.2.
|
|
62
|
+
"@backstage/core-compat-api": "^0.2.9-next.0",
|
|
63
63
|
"@backstage/core-components": "^0.14.10",
|
|
64
64
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
65
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
66
|
-
"@backstage/plugin-catalog-react": "^1.12.
|
|
65
|
+
"@backstage/frontend-plugin-api": "^0.8.0-next.0",
|
|
66
|
+
"@backstage/plugin-catalog-react": "^1.12.4-next.0",
|
|
67
67
|
"@backstage/plugin-home-react": "^0.1.16",
|
|
68
68
|
"@backstage/theme": "^0.5.6",
|
|
69
69
|
"@material-ui/core": "^4.12.2",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"zod": "^3.22.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/cli": "^0.27.0",
|
|
86
|
-
"@backstage/dev-utils": "^1.0.
|
|
87
|
-
"@backstage/test-utils": "^1.
|
|
85
|
+
"@backstage/cli": "^0.27.1-next.0",
|
|
86
|
+
"@backstage/dev-utils": "^1.0.38-next.0",
|
|
87
|
+
"@backstage/test-utils": "^1.6.0-next.0",
|
|
88
88
|
"@testing-library/dom": "^10.0.0",
|
|
89
89
|
"@testing-library/jest-dom": "^6.0.0",
|
|
90
90
|
"@testing-library/react": "^15.0.0",
|