@backstage/plugin-home 0.8.1-next.3 → 0.8.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
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b1b2cf: Improve Starred Entities UI to reduce whitespace and provide more context on the entities:
|
|
8
|
+
|
|
9
|
+
- Use the Entity Presentation API (via `<EntityDisplayName>`) to display the entity's name
|
|
10
|
+
- Component's `kind` and `spec.type` are displayed as a secondary text
|
|
11
|
+
- List items are condensed to reduce unnecessary spacing
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/catalog-client@1.8.0
|
|
15
|
+
- @backstage/config@1.3.0
|
|
16
|
+
- @backstage/theme@0.6.1
|
|
17
|
+
- @backstage/plugin-catalog-react@1.14.1
|
|
18
|
+
- @backstage/core-components@0.16.0
|
|
19
|
+
- @backstage/core-app-api@1.15.2
|
|
20
|
+
- @backstage/catalog-model@1.7.1
|
|
21
|
+
- @backstage/core-compat-api@0.3.2
|
|
22
|
+
- @backstage/core-plugin-api@1.10.1
|
|
23
|
+
- @backstage/frontend-plugin-api@0.9.1
|
|
24
|
+
- @backstage/plugin-home-react@0.1.19
|
|
25
|
+
|
|
3
26
|
## 0.8.1-next.3
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { createRouteRef, createExtensionDataRef, PageBlueprint,
|
|
2
|
+
import { createRouteRef, createExtensionDataRef, PageBlueprint, coreExtensionData, createExtensionInput, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import { compatWrapper } from '@backstage/core-compat-api';
|
|
4
4
|
|
|
5
5
|
const rootRouteRef = createRouteRef();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useMemo, useCallback } from 'react';
|
|
2
2
|
import { WidthProvider, Responsive } from 'react-grid-layout';
|
|
3
|
-
import { useElementFilter, useApi, storageApiRef
|
|
3
|
+
import { useElementFilter, getComponentData, useApi, storageApiRef } from '@backstage/core-plugin-api';
|
|
4
4
|
import 'react-grid-layout/css/styles.css';
|
|
5
5
|
import 'react-resizable/css/styles.css';
|
|
6
6
|
import Dialog from '@material-ui/core/Dialog';
|
|
@@ -12,7 +12,7 @@ import Typography from '@material-ui/core/Typography';
|
|
|
12
12
|
import { WidgetSettingsOverlay } from './WidgetSettingsOverlay.esm.js';
|
|
13
13
|
import { AddWidgetDialog } from './AddWidgetDialog.esm.js';
|
|
14
14
|
import { CustomHomepageButtons } from './CustomHomepageButtons.esm.js';
|
|
15
|
-
import {
|
|
15
|
+
import { WidgetSchema, LayoutConfigurationSchema, CustomHomepageGridStateV1Schema } from './types.esm.js';
|
|
16
16
|
|
|
17
17
|
const ResponsiveGrid = WidthProvider(Responsive);
|
|
18
18
|
const useStyles = makeStyles(
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createPlugin, createApiFactory,
|
|
1
|
+
import { createPlugin, createApiFactory, identityApiRef, storageApiRef, createRoutableExtension, createComponentExtension } from '@backstage/core-plugin-api';
|
|
2
2
|
import { createCardExtension } from '@backstage/plugin-home-react';
|
|
3
3
|
import { rootRouteRef } from './routes.esm.js';
|
|
4
4
|
import { VisitsStorageApi } from './api/VisitsStorageApi.esm.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
|
-
"version": "0.8.1
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "A Backstage plugin that helps you build a home page",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -65,17 +65,17 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/catalog-client": "1.8.0
|
|
69
|
-
"@backstage/catalog-model": "1.7.
|
|
70
|
-
"@backstage/config": "1.
|
|
71
|
-
"@backstage/core-app-api": "1.15.
|
|
72
|
-
"@backstage/core-compat-api": "0.3.2
|
|
73
|
-
"@backstage/core-components": "0.16.0
|
|
74
|
-
"@backstage/core-plugin-api": "1.10.
|
|
75
|
-
"@backstage/frontend-plugin-api": "0.9.1
|
|
76
|
-
"@backstage/plugin-catalog-react": "1.14.1
|
|
77
|
-
"@backstage/plugin-home-react": "0.1.19
|
|
78
|
-
"@backstage/theme": "0.6.1
|
|
68
|
+
"@backstage/catalog-client": "^1.8.0",
|
|
69
|
+
"@backstage/catalog-model": "^1.7.1",
|
|
70
|
+
"@backstage/config": "^1.3.0",
|
|
71
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
72
|
+
"@backstage/core-compat-api": "^0.3.2",
|
|
73
|
+
"@backstage/core-components": "^0.16.0",
|
|
74
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
75
|
+
"@backstage/frontend-plugin-api": "^0.9.1",
|
|
76
|
+
"@backstage/plugin-catalog-react": "^1.14.1",
|
|
77
|
+
"@backstage/plugin-home-react": "^0.1.19",
|
|
78
|
+
"@backstage/theme": "^0.6.1",
|
|
79
79
|
"@material-ui/core": "^4.12.2",
|
|
80
80
|
"@material-ui/icons": "^4.9.1",
|
|
81
81
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
"zod": "^3.22.4"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@backstage/cli": "0.29.0
|
|
95
|
-
"@backstage/dev-utils": "1.1.3
|
|
96
|
-
"@backstage/test-utils": "1.7.1
|
|
94
|
+
"@backstage/cli": "^0.29.0",
|
|
95
|
+
"@backstage/dev-utils": "^1.1.3",
|
|
96
|
+
"@backstage/test-utils": "^1.7.1",
|
|
97
97
|
"@testing-library/dom": "^10.0.0",
|
|
98
98
|
"@testing-library/jest-dom": "^6.0.0",
|
|
99
99
|
"@testing-library/react": "^16.0.0",
|