@backstage/plugin-org 0.6.13-next.0 → 0.6.13
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 +15 -5
- package/dist/index.d.ts +9 -11
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
-
## 0.6.13
|
|
3
|
+
## 0.6.13
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- 482bb5c0bbf8: Moved `@types/react` to be a regular dependency
|
|
8
7
|
- Updated dependencies
|
|
9
|
-
- @backstage/
|
|
10
|
-
- @backstage/core-components@0.13.5-next.0
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.3
|
|
11
9
|
- @backstage/catalog-model@1.4.1
|
|
10
|
+
- @backstage/core-components@0.13.4
|
|
11
|
+
- @backstage/core-plugin-api@1.5.3
|
|
12
|
+
- @backstage/theme@0.4.1
|
|
13
|
+
|
|
14
|
+
## 0.6.12
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/plugin-catalog-react@1.8.2
|
|
20
|
+
- @backstage/catalog-model@1.4.1
|
|
21
|
+
- @backstage/core-components@0.13.4
|
|
22
|
+
- @backstage/core-plugin-api@1.5.3
|
|
12
23
|
- @backstage/theme@0.4.1
|
|
13
|
-
- @backstage/plugin-catalog-react@1.8.3-next.0
|
|
14
24
|
|
|
15
25
|
## 0.6.11
|
|
16
26
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import React__default from 'react';
|
|
4
2
|
import * as _backstage_core_components from '@backstage/core-components';
|
|
5
3
|
import { InfoCardVariants } from '@backstage/core-components';
|
|
6
4
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
@@ -14,13 +12,13 @@ declare const orgPlugin: _backstage_core_plugin_api.BackstagePlugin<{}, {
|
|
|
14
12
|
declare const EntityGroupProfileCard: (props: {
|
|
15
13
|
variant?: _backstage_core_components.InfoCardVariants | undefined;
|
|
16
14
|
showLinks?: boolean | undefined;
|
|
17
|
-
}) =>
|
|
15
|
+
}) => JSX.Element;
|
|
18
16
|
/** @public */
|
|
19
17
|
declare const EntityMembersListCard: (props: {
|
|
20
18
|
memberDisplayTitle?: string | undefined;
|
|
21
19
|
pageSize?: number | undefined;
|
|
22
20
|
showAggregateMembersToggle?: boolean | undefined;
|
|
23
|
-
}) =>
|
|
21
|
+
}) => JSX.Element;
|
|
24
22
|
/** @public */
|
|
25
23
|
declare const EntityOwnershipCard: (props: {
|
|
26
24
|
variant?: _backstage_core_components.InfoCardVariants | undefined;
|
|
@@ -28,31 +26,31 @@ declare const EntityOwnershipCard: (props: {
|
|
|
28
26
|
hideRelationsToggle?: boolean | undefined;
|
|
29
27
|
relationsType?: string | undefined;
|
|
30
28
|
entityLimit?: number | undefined;
|
|
31
|
-
}) =>
|
|
29
|
+
}) => JSX.Element;
|
|
32
30
|
/** @public */
|
|
33
31
|
declare const EntityUserProfileCard: (props: {
|
|
34
32
|
variant?: _backstage_core_components.InfoCardVariants | undefined;
|
|
35
33
|
showLinks?: boolean | undefined;
|
|
36
|
-
}) =>
|
|
34
|
+
}) => JSX.Element;
|
|
37
35
|
|
|
38
36
|
/** @public */
|
|
39
37
|
declare const MembersListCard: (props: {
|
|
40
38
|
memberDisplayTitle?: string;
|
|
41
39
|
pageSize?: number;
|
|
42
40
|
showAggregateMembersToggle?: boolean;
|
|
43
|
-
}) =>
|
|
41
|
+
}) => JSX.Element;
|
|
44
42
|
|
|
45
43
|
/** @public */
|
|
46
44
|
declare const GroupProfileCard: (props: {
|
|
47
45
|
variant?: InfoCardVariants;
|
|
48
46
|
showLinks?: boolean;
|
|
49
|
-
}) =>
|
|
47
|
+
}) => JSX.Element;
|
|
50
48
|
|
|
51
49
|
/** @public */
|
|
52
50
|
declare const UserProfileCard: (props: {
|
|
53
51
|
variant?: InfoCardVariants;
|
|
54
52
|
showLinks?: boolean;
|
|
55
|
-
}) =>
|
|
53
|
+
}) => JSX.Element;
|
|
56
54
|
|
|
57
55
|
/** @public */
|
|
58
56
|
declare const OwnershipCard: (props: {
|
|
@@ -61,7 +59,7 @@ declare const OwnershipCard: (props: {
|
|
|
61
59
|
hideRelationsToggle?: boolean;
|
|
62
60
|
relationsType?: string;
|
|
63
61
|
entityLimit?: number;
|
|
64
|
-
}) =>
|
|
62
|
+
}) => JSX.Element;
|
|
65
63
|
|
|
66
64
|
/**
|
|
67
65
|
* MyGroupsSidebarItem can be added to your sidebar providing quick access to groups the logged in user is a member of
|
|
@@ -73,6 +71,6 @@ declare const MyGroupsSidebarItem: (props: {
|
|
|
73
71
|
pluralTitle: string;
|
|
74
72
|
icon: IconComponent;
|
|
75
73
|
filter?: Record<string, string | symbol | (string | symbol)[]>;
|
|
76
|
-
}) =>
|
|
74
|
+
}) => JSX.Element | null;
|
|
77
75
|
|
|
78
76
|
export { EntityGroupProfileCard, EntityMembersListCard, EntityOwnershipCard, EntityUserProfileCard, GroupProfileCard, MembersListCard, MyGroupsSidebarItem, OwnershipCard, UserProfileCard, orgPlugin, orgPlugin as plugin };
|
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.13
|
|
4
|
+
"version": "0.6.13",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -30,14 +30,13 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@backstage/catalog-model": "^1.4.1",
|
|
33
|
-
"@backstage/core-components": "^0.13.
|
|
34
|
-
"@backstage/core-plugin-api": "^1.
|
|
35
|
-
"@backstage/plugin-catalog-react": "^1.8.3
|
|
33
|
+
"@backstage/core-components": "^0.13.4",
|
|
34
|
+
"@backstage/core-plugin-api": "^1.5.3",
|
|
35
|
+
"@backstage/plugin-catalog-react": "^1.8.3",
|
|
36
36
|
"@backstage/theme": "^0.4.1",
|
|
37
37
|
"@material-ui/core": "^4.12.2",
|
|
38
38
|
"@material-ui/icons": "^4.9.1",
|
|
39
39
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
40
|
-
"@types/react": "^16.13.1 || ^17.0.0",
|
|
41
40
|
"p-limit": "^3.1.0",
|
|
42
41
|
"pluralize": "^8.0.0",
|
|
43
42
|
"qs": "^6.10.1",
|
|
@@ -50,18 +49,19 @@
|
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
52
51
|
"@backstage/catalog-client": "^1.4.3",
|
|
53
|
-
"@backstage/cli": "^0.22.12
|
|
54
|
-
"@backstage/core-app-api": "^1.
|
|
55
|
-
"@backstage/dev-utils": "^1.0.20
|
|
56
|
-
"@backstage/plugin-catalog": "^1.12.4
|
|
57
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
58
|
-
"@backstage/test-utils": "^1.4.
|
|
52
|
+
"@backstage/cli": "^0.22.12",
|
|
53
|
+
"@backstage/core-app-api": "^1.9.1",
|
|
54
|
+
"@backstage/dev-utils": "^1.0.20",
|
|
55
|
+
"@backstage/plugin-catalog": "^1.12.4",
|
|
56
|
+
"@backstage/plugin-permission-react": "^0.4.14",
|
|
57
|
+
"@backstage/test-utils": "^1.4.2",
|
|
59
58
|
"@backstage/types": "^1.1.0",
|
|
60
59
|
"@testing-library/dom": "^8.0.0",
|
|
61
60
|
"@testing-library/jest-dom": "^5.10.1",
|
|
62
61
|
"@testing-library/react": "^12.1.3",
|
|
63
62
|
"@testing-library/user-event": "^14.0.0",
|
|
64
63
|
"@types/node": "^16.11.26",
|
|
64
|
+
"@types/react": "^16.13.1 || ^17.0.0",
|
|
65
65
|
"msw": "^1.0.0"
|
|
66
66
|
},
|
|
67
67
|
"files": [
|