Merge branch master into entity-ownership-card-overlapped-text

Signed-off-by: Claire Casey <ccasey@spotify.com>
This commit is contained in:
Claire Casey
2023-02-23 14:05:02 -05:00
1307 changed files with 31938 additions and 6319 deletions
+24
View File
@@ -1,5 +1,29 @@
# @backstage/plugin-org
## 0.6.6-next.0
### Patch Changes
- 36bccb5252: Fix small UI-glitch in MemberListCard
- Updated dependencies
- @backstage/plugin-catalog-react@1.4.0-next.0
- @backstage/core-plugin-api@1.4.1-next.0
- @backstage/catalog-model@1.2.1-next.0
- @backstage/core-components@0.12.5-next.0
- @backstage/theme@0.2.17
## 0.6.5
### Patch Changes
- 5a4fa8859b: Updated `LinksGroup` to use `Link` over `ListItem` as this makes the links more obvious and follows the pattern already used in the `GroupProfileCard`. Also updated the `GroupProfileCard` `ExtraDetails` story in Storybook to enable the `showLinks` feature with this off there is no difference between it and the `default` story.
- Updated dependencies
- @backstage/core-components@0.12.4
- @backstage/catalog-model@1.2.0
- @backstage/theme@0.2.17
- @backstage/core-plugin-api@1.4.0
- @backstage/plugin-catalog-react@1.3.0
## 0.6.5-next.2
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-org",
"description": "A Backstage plugin that helps you create entity pages for your organization",
"version": "0.6.5-next.2",
"version": "0.6.6-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -56,7 +56,7 @@
"@testing-library/user-event": "^14.0.0",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.49.0"
"msw": "^1.0.0"
},
"files": [
"dist"
@@ -123,7 +123,7 @@ export const ExtraDetails = () => (
<EntityProvider entity={extraDetailsEntity}>
<Grid container spacing={4}>
<Grid item xs={12} md={4}>
<GroupProfileCard variant="gridItem" />
<GroupProfileCard variant="gridItem" showLinks />
</Grid>
</Grid>
</EntityProvider>
@@ -23,6 +23,7 @@ import {
Divider,
} from '@material-ui/core';
import React from 'react';
import { Link } from '@backstage/core-components';
const WebLink = ({
href,
@@ -33,9 +34,11 @@ const WebLink = ({
text?: string;
Icon?: IconComponent;
}) => (
<ListItem button component="a" key={href} href={href}>
<ListItem key={href}>
<ListItemIcon>{Icon ? <Icon /> : <LanguageIcon />}</ListItemIcon>
<ListItemText>{text}</ListItemText>
<ListItemText>
<Link to={href}>{text}</Link>
</ListItemText>
</ListItem>
);