@backstage/plugin-org 0.6.29 → 0.6.30-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 +13 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +16 -4
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.30-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.0-next.0
|
|
9
|
+
- @backstage/core-compat-api@0.3.1-next.0
|
|
10
|
+
- @backstage/core-components@0.15.1-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
|
12
|
+
- @backstage/plugin-catalog-react@1.13.1-next.0
|
|
13
|
+
- @backstage/catalog-model@1.7.0
|
|
14
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
15
|
+
|
|
3
16
|
## 0.6.29
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {
|
|
|
8
8
|
}, {
|
|
9
9
|
"entity-card:org/group-profile": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
10
|
kind: "entity-card";
|
|
11
|
-
namespace: undefined;
|
|
12
11
|
name: "group-profile";
|
|
13
12
|
config: {
|
|
14
13
|
filter: string | undefined;
|
|
@@ -22,10 +21,13 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {
|
|
|
22
21
|
optional: true;
|
|
23
22
|
}>;
|
|
24
23
|
inputs: {};
|
|
24
|
+
params: {
|
|
25
|
+
loader: () => Promise<JSX.Element>;
|
|
26
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
27
|
+
};
|
|
25
28
|
}>;
|
|
26
29
|
"entity-card:org/members-list": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
27
30
|
kind: "entity-card";
|
|
28
|
-
namespace: undefined;
|
|
29
31
|
name: "members-list";
|
|
30
32
|
config: {
|
|
31
33
|
filter: string | undefined;
|
|
@@ -39,10 +41,13 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {
|
|
|
39
41
|
optional: true;
|
|
40
42
|
}>;
|
|
41
43
|
inputs: {};
|
|
44
|
+
params: {
|
|
45
|
+
loader: () => Promise<JSX.Element>;
|
|
46
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
47
|
+
};
|
|
42
48
|
}>;
|
|
43
49
|
"entity-card:org/ownership": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
44
50
|
kind: "entity-card";
|
|
45
|
-
namespace: undefined;
|
|
46
51
|
name: "ownership";
|
|
47
52
|
config: {
|
|
48
53
|
filter: string | undefined;
|
|
@@ -56,10 +61,13 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {
|
|
|
56
61
|
optional: true;
|
|
57
62
|
}>;
|
|
58
63
|
inputs: {};
|
|
64
|
+
params: {
|
|
65
|
+
loader: () => Promise<JSX.Element>;
|
|
66
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
67
|
+
};
|
|
59
68
|
}>;
|
|
60
69
|
"entity-card:org/user-profile": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
61
70
|
kind: "entity-card";
|
|
62
|
-
namespace: undefined;
|
|
63
71
|
name: "user-profile";
|
|
64
72
|
config: {
|
|
65
73
|
filter: string | undefined;
|
|
@@ -73,6 +81,10 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {
|
|
|
73
81
|
optional: true;
|
|
74
82
|
}>;
|
|
75
83
|
inputs: {};
|
|
84
|
+
params: {
|
|
85
|
+
loader: () => Promise<JSX.Element>;
|
|
86
|
+
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
87
|
+
};
|
|
76
88
|
}>;
|
|
77
89
|
}>;
|
|
78
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-org",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.30-next.0",
|
|
4
4
|
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"default": "./dist/index.esm.js"
|
|
29
29
|
},
|
|
30
30
|
"./alpha": {
|
|
31
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
31
32
|
"import": "./dist/alpha.esm.js",
|
|
32
33
|
"types": "./dist/alpha.d.ts",
|
|
33
34
|
"default": "./dist/alpha.esm.js"
|
|
@@ -51,12 +52,12 @@
|
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
54
|
"@backstage/catalog-model": "^1.7.0",
|
|
54
|
-
"@backstage/core-compat-api": "^0.3.0",
|
|
55
|
-
"@backstage/core-components": "^0.15.0",
|
|
56
|
-
"@backstage/core-plugin-api": "^1.
|
|
57
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
55
|
+
"@backstage/core-compat-api": "^0.3.1-next.0",
|
|
56
|
+
"@backstage/core-components": "^0.15.1-next.0",
|
|
57
|
+
"@backstage/core-plugin-api": "^1.10.0-next.0",
|
|
58
|
+
"@backstage/frontend-plugin-api": "^0.9.0-next.0",
|
|
58
59
|
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
59
|
-
"@backstage/plugin-catalog-react": "^1.13.0",
|
|
60
|
+
"@backstage/plugin-catalog-react": "^1.13.1-next.0",
|
|
60
61
|
"@material-ui/core": "^4.12.2",
|
|
61
62
|
"@material-ui/icons": "^4.9.1",
|
|
62
63
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -69,13 +70,13 @@
|
|
|
69
70
|
},
|
|
70
71
|
"devDependencies": {
|
|
71
72
|
"@backstage/catalog-client": "^1.7.0",
|
|
72
|
-
"@backstage/cli": "^0.
|
|
73
|
-
"@backstage/core-app-api": "^1.15.0",
|
|
74
|
-
"@backstage/dev-utils": "^1.1.0",
|
|
75
|
-
"@backstage/plugin-catalog": "^1.
|
|
73
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
74
|
+
"@backstage/core-app-api": "^1.15.1-next.0",
|
|
75
|
+
"@backstage/dev-utils": "^1.1.1-next.0",
|
|
76
|
+
"@backstage/plugin-catalog": "^1.24.0-next.0",
|
|
76
77
|
"@backstage/plugin-permission-common": "^0.8.1",
|
|
77
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
78
|
-
"@backstage/test-utils": "^1.6.0",
|
|
78
|
+
"@backstage/plugin-permission-react": "^0.4.27-next.0",
|
|
79
|
+
"@backstage/test-utils": "^1.6.1-next.0",
|
|
79
80
|
"@backstage/types": "^1.1.1",
|
|
80
81
|
"@testing-library/dom": "^10.0.0",
|
|
81
82
|
"@testing-library/jest-dom": "^6.0.0",
|