@backstage/plugin-org 0.6.49-next.0 → 0.6.49-next.2
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 +23 -0
- package/dist/alpha.d.ts +22 -21
- package/dist/package.json.esm.js +4 -3
- package/dist/package.json.esm.js.map +1 -1
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.49-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ac9bead: Added `@backstage/frontend-test-utils` dev dependency.
|
|
8
|
+
- 7feb83b: Adjusted to use the new `@backstage/filter-predicates` types for predicate expressions.
|
|
9
|
+
- 4183614: Updated usage of deprecated APIs in the new frontend system.
|
|
10
|
+
- a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-catalog-react@2.0.0-next.2
|
|
13
|
+
- @backstage/frontend-plugin-api@0.14.0-next.2
|
|
14
|
+
- @backstage/core-components@0.18.7-next.2
|
|
15
|
+
- @backstage/core-plugin-api@1.12.3-next.1
|
|
16
|
+
|
|
17
|
+
## 0.6.49-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/plugin-catalog-react@1.22.0-next.1
|
|
23
|
+
- @backstage/frontend-plugin-api@0.14.0-next.1
|
|
24
|
+
- @backstage/core-components@0.18.7-next.1
|
|
25
|
+
|
|
3
26
|
## 0.6.49-next.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
1
2
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
2
3
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
3
4
|
import * as react from 'react';
|
|
4
|
-
import * as
|
|
5
|
+
import * as _backstage_filter_predicates from '@backstage/filter-predicates';
|
|
5
6
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
6
7
|
|
|
7
8
|
/**
|
|
@@ -44,12 +45,12 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
44
45
|
kind: "entity-card";
|
|
45
46
|
name: "group-profile";
|
|
46
47
|
config: {
|
|
47
|
-
filter:
|
|
48
|
-
type: "content" | "
|
|
48
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
49
|
+
type: "content" | "info" | undefined;
|
|
49
50
|
};
|
|
50
51
|
configInput: {
|
|
51
|
-
filter?:
|
|
52
|
-
type?: "content" | "
|
|
52
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
53
|
+
type?: "content" | "info" | undefined;
|
|
53
54
|
};
|
|
54
55
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
55
56
|
optional: true;
|
|
@@ -61,7 +62,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
61
62
|
inputs: {};
|
|
62
63
|
params: {
|
|
63
64
|
loader: () => Promise<JSX.Element>;
|
|
64
|
-
filter?: string |
|
|
65
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
65
66
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
66
67
|
};
|
|
67
68
|
}>;
|
|
@@ -69,14 +70,14 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
69
70
|
config: {
|
|
70
71
|
initialRelationAggregation: "direct" | "aggregated" | undefined;
|
|
71
72
|
showAggregateMembersToggle: boolean | undefined;
|
|
72
|
-
filter:
|
|
73
|
-
type: "content" | "
|
|
73
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
74
|
+
type: "content" | "info" | undefined;
|
|
74
75
|
};
|
|
75
76
|
configInput: {
|
|
76
77
|
showAggregateMembersToggle?: boolean | undefined;
|
|
77
78
|
initialRelationAggregation?: "direct" | "aggregated" | undefined;
|
|
78
|
-
filter?:
|
|
79
|
-
type?: "content" | "
|
|
79
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
80
|
+
type?: "content" | "info" | undefined;
|
|
80
81
|
};
|
|
81
82
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
82
83
|
optional: true;
|
|
@@ -90,7 +91,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
90
91
|
name: "members-list";
|
|
91
92
|
params: {
|
|
92
93
|
loader: () => Promise<JSX.Element>;
|
|
93
|
-
filter?: string |
|
|
94
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
94
95
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
95
96
|
};
|
|
96
97
|
}>;
|
|
@@ -99,15 +100,15 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
99
100
|
initialRelationAggregation: "direct" | "aggregated" | undefined;
|
|
100
101
|
showAggregateMembersToggle: boolean | undefined;
|
|
101
102
|
ownedKinds: string[] | undefined;
|
|
102
|
-
filter:
|
|
103
|
-
type: "content" | "
|
|
103
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
104
|
+
type: "content" | "info" | undefined;
|
|
104
105
|
};
|
|
105
106
|
configInput: {
|
|
106
107
|
showAggregateMembersToggle?: boolean | undefined;
|
|
107
108
|
initialRelationAggregation?: "direct" | "aggregated" | undefined;
|
|
108
109
|
ownedKinds?: string[] | undefined;
|
|
109
|
-
filter?:
|
|
110
|
-
type?: "content" | "
|
|
110
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
111
|
+
type?: "content" | "info" | undefined;
|
|
111
112
|
};
|
|
112
113
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
113
114
|
optional: true;
|
|
@@ -121,7 +122,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
121
122
|
name: "ownership";
|
|
122
123
|
params: {
|
|
123
124
|
loader: () => Promise<JSX.Element>;
|
|
124
|
-
filter?: string |
|
|
125
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
125
126
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
126
127
|
};
|
|
127
128
|
}>;
|
|
@@ -129,14 +130,14 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
129
130
|
config: {
|
|
130
131
|
maxRelations: number | undefined;
|
|
131
132
|
hideIcons: boolean;
|
|
132
|
-
filter:
|
|
133
|
-
type: "content" | "
|
|
133
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
134
|
+
type: "content" | "info" | undefined;
|
|
134
135
|
};
|
|
135
136
|
configInput: {
|
|
136
137
|
hideIcons?: boolean | undefined;
|
|
137
138
|
maxRelations?: number | undefined;
|
|
138
|
-
filter?:
|
|
139
|
-
type?: "content" | "
|
|
139
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
140
|
+
type?: "content" | "info" | undefined;
|
|
140
141
|
};
|
|
141
142
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
142
143
|
optional: true;
|
|
@@ -150,7 +151,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
150
151
|
name: "user-profile";
|
|
151
152
|
params: {
|
|
152
153
|
loader: () => Promise<JSX.Element>;
|
|
153
|
-
filter?: string |
|
|
154
|
+
filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
154
155
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType;
|
|
155
156
|
};
|
|
156
157
|
}>;
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-org";
|
|
2
|
-
var version = "0.6.49-next.
|
|
2
|
+
var version = "0.6.49-next.2";
|
|
3
3
|
var description = "A Backstage plugin that helps you create entity pages for your organization";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -70,6 +70,7 @@ var devDependencies = {
|
|
|
70
70
|
"@backstage/cli": "workspace:^",
|
|
71
71
|
"@backstage/core-app-api": "workspace:^",
|
|
72
72
|
"@backstage/dev-utils": "workspace:^",
|
|
73
|
+
"@backstage/frontend-test-utils": "workspace:^",
|
|
73
74
|
"@backstage/plugin-catalog": "workspace:^",
|
|
74
75
|
"@backstage/plugin-permission-common": "workspace:^",
|
|
75
76
|
"@backstage/plugin-permission-react": "workspace:^",
|
|
@@ -82,13 +83,13 @@ var devDependencies = {
|
|
|
82
83
|
"@types/react": "^18.0.0",
|
|
83
84
|
react: "^18.0.2",
|
|
84
85
|
"react-dom": "^18.0.2",
|
|
85
|
-
"react-router-dom": "^6.
|
|
86
|
+
"react-router-dom": "^6.30.2"
|
|
86
87
|
};
|
|
87
88
|
var peerDependencies = {
|
|
88
89
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
89
90
|
react: "^17.0.0 || ^18.0.0",
|
|
90
91
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
91
|
-
"react-router-dom": "^6.
|
|
92
|
+
"react-router-dom": "^6.30.2"
|
|
92
93
|
};
|
|
93
94
|
var peerDependenciesMeta = {
|
|
94
95
|
"@types/react": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-org",
|
|
3
|
-
"version": "0.6.49-next.
|
|
3
|
+
"version": "0.6.49-next.2",
|
|
4
4
|
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@backstage/catalog-model": "1.7.6",
|
|
67
|
-
"@backstage/core-components": "0.18.
|
|
68
|
-
"@backstage/core-plugin-api": "1.12.
|
|
69
|
-
"@backstage/frontend-plugin-api": "0.14.0-next.
|
|
67
|
+
"@backstage/core-components": "0.18.7-next.2",
|
|
68
|
+
"@backstage/core-plugin-api": "1.12.3-next.1",
|
|
69
|
+
"@backstage/frontend-plugin-api": "0.14.0-next.2",
|
|
70
70
|
"@backstage/plugin-catalog-common": "1.1.8-next.0",
|
|
71
|
-
"@backstage/plugin-catalog-react": "
|
|
71
|
+
"@backstage/plugin-catalog-react": "2.0.0-next.2",
|
|
72
72
|
"@material-ui/core": "^4.12.2",
|
|
73
73
|
"@material-ui/icons": "^4.9.1",
|
|
74
74
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -79,14 +79,15 @@
|
|
|
79
79
|
"react-use": "^17.2.4"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/catalog-client": "1.12.
|
|
83
|
-
"@backstage/cli": "0.35.
|
|
84
|
-
"@backstage/core-app-api": "1.19.
|
|
85
|
-
"@backstage/dev-utils": "1.1.20-next.
|
|
86
|
-
"@backstage/
|
|
87
|
-
"@backstage/plugin-
|
|
88
|
-
"@backstage/plugin-permission-
|
|
89
|
-
"@backstage/
|
|
82
|
+
"@backstage/catalog-client": "1.12.2-next.0",
|
|
83
|
+
"@backstage/cli": "0.35.4-next.2",
|
|
84
|
+
"@backstage/core-app-api": "1.19.5-next.1",
|
|
85
|
+
"@backstage/dev-utils": "1.1.20-next.2",
|
|
86
|
+
"@backstage/frontend-test-utils": "0.5.0-next.2",
|
|
87
|
+
"@backstage/plugin-catalog": "1.33.0-next.2",
|
|
88
|
+
"@backstage/plugin-permission-common": "0.9.6-next.0",
|
|
89
|
+
"@backstage/plugin-permission-react": "0.4.40-next.1",
|
|
90
|
+
"@backstage/test-utils": "1.7.15-next.2",
|
|
90
91
|
"@backstage/types": "1.2.2",
|
|
91
92
|
"@testing-library/dom": "^10.0.0",
|
|
92
93
|
"@testing-library/jest-dom": "^6.0.0",
|
|
@@ -95,13 +96,13 @@
|
|
|
95
96
|
"@types/react": "^18.0.0",
|
|
96
97
|
"react": "^18.0.2",
|
|
97
98
|
"react-dom": "^18.0.2",
|
|
98
|
-
"react-router-dom": "^6.
|
|
99
|
+
"react-router-dom": "^6.30.2"
|
|
99
100
|
},
|
|
100
101
|
"peerDependencies": {
|
|
101
102
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
102
103
|
"react": "^17.0.0 || ^18.0.0",
|
|
103
104
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
104
|
-
"react-router-dom": "^6.
|
|
105
|
+
"react-router-dom": "^6.30.2"
|
|
105
106
|
},
|
|
106
107
|
"peerDependenciesMeta": {
|
|
107
108
|
"@types/react": {
|