@backstage/plugin-catalog-graph 0.4.16 → 0.4.17-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 +23 -0
- package/dist/alpha.d.ts +6 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
+
## 0.4.17-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-components@0.16.5-next.0
|
|
9
|
+
- @backstage/plugin-catalog-react@1.16.0-next.1
|
|
10
|
+
- @backstage/core-compat-api@0.3.7-next.1
|
|
11
|
+
- @backstage/catalog-client@1.9.1
|
|
12
|
+
- @backstage/catalog-model@1.7.3
|
|
13
|
+
- @backstage/core-plugin-api@1.10.4
|
|
14
|
+
- @backstage/frontend-plugin-api@0.9.6-next.1
|
|
15
|
+
- @backstage/types@1.2.1
|
|
16
|
+
|
|
17
|
+
## 0.4.17-next.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/plugin-catalog-react@1.16.0-next.0
|
|
23
|
+
- @backstage/frontend-plugin-api@0.9.6-next.0
|
|
24
|
+
- @backstage/core-compat-api@0.3.7-next.0
|
|
25
|
+
|
|
3
26
|
## 0.4.16
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
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 React__default from 'react';
|
|
@@ -27,6 +28,7 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
27
28
|
height: number | undefined;
|
|
28
29
|
} & {
|
|
29
30
|
filter: string | undefined;
|
|
31
|
+
type: "full" | "info" | "peek" | undefined;
|
|
30
32
|
};
|
|
31
33
|
configInput: {
|
|
32
34
|
height?: number | undefined;
|
|
@@ -42,11 +44,14 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
42
44
|
relationPairs?: [string, string][] | undefined;
|
|
43
45
|
} & {
|
|
44
46
|
filter?: string | undefined;
|
|
47
|
+
type?: "full" | "info" | "peek" | undefined;
|
|
45
48
|
};
|
|
46
49
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
47
50
|
optional: true;
|
|
48
51
|
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "catalog.entity-filter-expression", {
|
|
49
52
|
optional: true;
|
|
53
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
54
|
+
optional: true;
|
|
50
55
|
}>;
|
|
51
56
|
inputs: {
|
|
52
57
|
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.AnyExtensionDataRef, {
|
|
@@ -59,6 +64,7 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
|
59
64
|
params: {
|
|
60
65
|
loader: () => Promise<JSX.Element>;
|
|
61
66
|
filter?: string | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
67
|
+
type?: _backstage_plugin_catalog_react_alpha.EntityCardType | undefined;
|
|
62
68
|
};
|
|
63
69
|
}>;
|
|
64
70
|
"page:catalog-graph": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.17-next.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -61,14 +61,14 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/catalog-client": "
|
|
65
|
-
"@backstage/catalog-model": "
|
|
66
|
-
"@backstage/core-compat-api": "
|
|
67
|
-
"@backstage/core-components": "
|
|
68
|
-
"@backstage/core-plugin-api": "
|
|
69
|
-
"@backstage/frontend-plugin-api": "
|
|
70
|
-
"@backstage/plugin-catalog-react": "
|
|
71
|
-
"@backstage/types": "
|
|
64
|
+
"@backstage/catalog-client": "1.9.1",
|
|
65
|
+
"@backstage/catalog-model": "1.7.3",
|
|
66
|
+
"@backstage/core-compat-api": "0.3.7-next.1",
|
|
67
|
+
"@backstage/core-components": "0.16.5-next.0",
|
|
68
|
+
"@backstage/core-plugin-api": "1.10.4",
|
|
69
|
+
"@backstage/frontend-plugin-api": "0.9.6-next.1",
|
|
70
|
+
"@backstage/plugin-catalog-react": "1.16.0-next.1",
|
|
71
|
+
"@backstage/types": "1.2.1",
|
|
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,11 +79,11 @@
|
|
|
79
79
|
"react-use": "^17.2.4"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/cli": "
|
|
83
|
-
"@backstage/core-app-api": "
|
|
84
|
-
"@backstage/dev-utils": "
|
|
85
|
-
"@backstage/plugin-catalog": "
|
|
86
|
-
"@backstage/test-utils": "
|
|
82
|
+
"@backstage/cli": "0.30.1-next.0",
|
|
83
|
+
"@backstage/core-app-api": "1.15.5",
|
|
84
|
+
"@backstage/dev-utils": "1.1.8-next.1",
|
|
85
|
+
"@backstage/plugin-catalog": "1.28.0-next.1",
|
|
86
|
+
"@backstage/test-utils": "1.7.5",
|
|
87
87
|
"@testing-library/dom": "^10.0.0",
|
|
88
88
|
"@testing-library/jest-dom": "^6.0.0",
|
|
89
89
|
"@testing-library/react": "^16.0.0",
|