@backstage/plugin-org 0.6.30 → 0.6.31-next.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,12 +1,31 @@
1
1
  # @backstage/plugin-org
2
2
 
3
- ## 0.6.30
3
+ ## 0.6.31-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - e969dc7: Move `@types/react` to a peer dependency.
7
8
  - Updated dependencies
8
- - @backstage/plugin-catalog-react@1.13.1
9
- - @backstage/core-compat-api@0.3.0
9
+ - @backstage/core-components@0.15.1-next.1
10
+ - @backstage/frontend-plugin-api@0.9.0-next.1
11
+ - @backstage/core-compat-api@0.3.1-next.1
12
+ - @backstage/core-plugin-api@1.10.0-next.1
13
+ - @backstage/plugin-catalog-react@1.14.0-next.1
14
+ - @backstage/catalog-model@1.7.0
15
+ - @backstage/plugin-catalog-common@1.1.0
16
+
17
+ ## 0.6.30-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/frontend-plugin-api@0.9.0-next.0
23
+ - @backstage/core-compat-api@0.3.1-next.0
24
+ - @backstage/core-components@0.15.1-next.0
25
+ - @backstage/core-plugin-api@1.10.0-next.0
26
+ - @backstage/plugin-catalog-react@1.13.1-next.0
27
+ - @backstage/catalog-model@1.7.0
28
+ - @backstage/plugin-catalog-common@1.1.0
10
29
 
11
30
  ## 0.6.29
12
31
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-org__alpha",
3
- "version": "0.6.30",
3
+ "version": "0.6.31-next.1",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
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.30",
3
+ "version": "0.6.31-next.1",
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"
@@ -50,17 +51,16 @@
50
51
  "test": "backstage-cli package test"
51
52
  },
52
53
  "dependencies": {
53
- "@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.9.4",
57
- "@backstage/frontend-plugin-api": "^0.8.0",
58
- "@backstage/plugin-catalog-common": "^1.1.0",
59
- "@backstage/plugin-catalog-react": "^1.13.1",
54
+ "@backstage/catalog-model": "1.7.0",
55
+ "@backstage/core-compat-api": "0.3.1-next.1",
56
+ "@backstage/core-components": "0.15.1-next.1",
57
+ "@backstage/core-plugin-api": "1.10.0-next.1",
58
+ "@backstage/frontend-plugin-api": "0.9.0-next.1",
59
+ "@backstage/plugin-catalog-common": "1.1.0",
60
+ "@backstage/plugin-catalog-react": "1.14.0-next.1",
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",
63
- "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
64
64
  "lodash": "^4.17.21",
65
65
  "p-limit": "^3.1.0",
66
66
  "pluralize": "^8.0.0",
@@ -68,24 +68,34 @@
68
68
  "react-use": "^17.2.4"
69
69
  },
70
70
  "devDependencies": {
71
- "@backstage/catalog-client": "^1.7.0",
72
- "@backstage/cli": "^0.27.1",
73
- "@backstage/core-app-api": "^1.15.0",
74
- "@backstage/dev-utils": "^1.1.1",
75
- "@backstage/plugin-catalog": "^1.23.1",
76
- "@backstage/plugin-permission-common": "^0.8.1",
77
- "@backstage/plugin-permission-react": "^0.4.26",
78
- "@backstage/test-utils": "^1.6.0",
79
- "@backstage/types": "^1.1.1",
71
+ "@backstage/catalog-client": "1.7.0",
72
+ "@backstage/cli": "0.28.0-next.1",
73
+ "@backstage/core-app-api": "1.15.1-next.1",
74
+ "@backstage/dev-utils": "1.1.2-next.1",
75
+ "@backstage/plugin-catalog": "1.24.0-next.1",
76
+ "@backstage/plugin-permission-common": "0.8.1",
77
+ "@backstage/plugin-permission-react": "0.4.27-next.1",
78
+ "@backstage/test-utils": "1.6.1-next.1",
79
+ "@backstage/types": "1.1.1",
80
80
  "@testing-library/dom": "^10.0.0",
81
81
  "@testing-library/jest-dom": "^6.0.0",
82
82
  "@testing-library/react": "^16.0.0",
83
- "@testing-library/user-event": "^14.0.0"
83
+ "@testing-library/user-event": "^14.0.0",
84
+ "@types/react": "^18.0.0",
85
+ "react": "^18.0.2",
86
+ "react-dom": "^18.0.2",
87
+ "react-router-dom": "^6.3.0"
84
88
  },
85
89
  "peerDependencies": {
90
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
86
91
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
87
92
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
88
93
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
89
94
  },
95
+ "peerDependenciesMeta": {
96
+ "@types/react": {
97
+ "optional": true
98
+ }
99
+ },
90
100
  "module": "./dist/index.esm.js"
91
101
  }