@backstage/plugin-org 0.6.8-next.2 → 0.6.8
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 +24 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6e387c077a4: Changed the MembersListCard component to allow displaying aggregated members when viewing a group. Now, a toggle switch can be displayed that lets you switch between showing direct members and aggregated members.
|
|
8
|
+
|
|
9
|
+
To enable this new feature, set the showAggregateMembersToggle prop on EntityMembersListCard:
|
|
10
|
+
|
|
11
|
+
```jsx
|
|
12
|
+
// In packages/app/src/components/catalog/EntityPage.tsx
|
|
13
|
+
const groupPage = (
|
|
14
|
+
// ...
|
|
15
|
+
<EntityMembersListCard showAggregateMembersToggle />
|
|
16
|
+
// ...
|
|
17
|
+
);
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/theme@0.3.0
|
|
22
|
+
- @backstage/plugin-catalog-react@1.6.0
|
|
23
|
+
- @backstage/core-components@0.13.1
|
|
24
|
+
- @backstage/catalog-model@1.3.0
|
|
25
|
+
- @backstage/core-plugin-api@1.5.1
|
|
26
|
+
|
|
3
27
|
## 0.6.8-next.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-org",
|
|
3
3
|
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
|
4
|
-
"version": "0.6.8
|
|
4
|
+
"version": "0.6.8",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@backstage/catalog-model": "^1.3.0",
|
|
32
|
-
"@backstage/core-components": "^0.13.1
|
|
32
|
+
"@backstage/core-components": "^0.13.1",
|
|
33
33
|
"@backstage/core-plugin-api": "^1.5.1",
|
|
34
|
-
"@backstage/plugin-catalog-react": "^1.6.0
|
|
35
|
-
"@backstage/theme": "^0.3.0
|
|
34
|
+
"@backstage/plugin-catalog-react": "^1.6.0",
|
|
35
|
+
"@backstage/theme": "^0.3.0",
|
|
36
36
|
"@material-ui/core": "^4.12.2",
|
|
37
37
|
"@material-ui/icons": "^4.9.1",
|
|
38
38
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@backstage/catalog-client": "^1.4.1",
|
|
51
|
-
"@backstage/cli": "^0.22.7
|
|
52
|
-
"@backstage/core-app-api": "^1.8.0
|
|
53
|
-
"@backstage/dev-utils": "^1.0.15
|
|
54
|
-
"@backstage/plugin-catalog": "^1.11.0
|
|
51
|
+
"@backstage/cli": "^0.22.7",
|
|
52
|
+
"@backstage/core-app-api": "^1.8.0",
|
|
53
|
+
"@backstage/dev-utils": "^1.0.15",
|
|
54
|
+
"@backstage/plugin-catalog": "^1.11.0",
|
|
55
55
|
"@backstage/plugin-permission-react": "^0.4.12",
|
|
56
|
-
"@backstage/test-utils": "^1.3.1
|
|
56
|
+
"@backstage/test-utils": "^1.3.1",
|
|
57
57
|
"@backstage/types": "^1.0.2",
|
|
58
58
|
"@testing-library/dom": "^8.0.0",
|
|
59
59
|
"@testing-library/jest-dom": "^5.10.1",
|