@backstage/plugin-catalog-graph 0.4.8 → 0.4.9-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 +15 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +82 -74
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
+
## 0.4.9-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.8.0-next.0
|
|
10
|
+
- @backstage/core-compat-api@0.2.9-next.0
|
|
11
|
+
- @backstage/plugin-catalog-react@1.12.4-next.0
|
|
12
|
+
- @backstage/catalog-client@1.6.6
|
|
13
|
+
- @backstage/catalog-model@1.6.0
|
|
14
|
+
- @backstage/core-components@0.14.10
|
|
15
|
+
- @backstage/core-plugin-api@1.9.3
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
|
|
3
18
|
## 0.4.8
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -13,87 +13,95 @@ declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
|
|
|
13
13
|
}>;
|
|
14
14
|
}, {
|
|
15
15
|
"entity-card:catalog-graph/relations": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
optional:
|
|
50
|
-
singleton: boolean;
|
|
16
|
+
config: {
|
|
17
|
+
kinds: string[] | undefined;
|
|
18
|
+
relations: string[] | undefined;
|
|
19
|
+
maxDepth: number | undefined;
|
|
20
|
+
unidirectional: boolean | undefined;
|
|
21
|
+
mergeRelations: boolean | undefined;
|
|
22
|
+
direction: Direction | undefined;
|
|
23
|
+
relationPairs: [string, string][] | undefined;
|
|
24
|
+
zoom: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
25
|
+
curve: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
26
|
+
title: string | undefined;
|
|
27
|
+
height: number | undefined;
|
|
28
|
+
} & {
|
|
29
|
+
filter: string | undefined;
|
|
30
|
+
};
|
|
31
|
+
configInput: {
|
|
32
|
+
height?: number | undefined;
|
|
33
|
+
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
34
|
+
direction?: Direction | undefined;
|
|
35
|
+
title?: string | undefined;
|
|
36
|
+
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
37
|
+
relations?: string[] | undefined;
|
|
38
|
+
maxDepth?: number | undefined;
|
|
39
|
+
kinds?: string[] | undefined;
|
|
40
|
+
unidirectional?: boolean | undefined;
|
|
41
|
+
mergeRelations?: boolean | undefined;
|
|
42
|
+
relationPairs?: [string, string][] | undefined;
|
|
43
|
+
} & {
|
|
44
|
+
filter?: string | undefined;
|
|
45
|
+
};
|
|
46
|
+
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
|
+
optional: true;
|
|
48
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "catalog.entity-filter-expression", {
|
|
49
|
+
optional: true;
|
|
51
50
|
}>;
|
|
52
|
-
|
|
51
|
+
inputs: {
|
|
52
|
+
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.AnyExtensionDataRef, {
|
|
53
|
+
optional: boolean;
|
|
54
|
+
singleton: boolean;
|
|
55
|
+
}>;
|
|
56
|
+
};
|
|
53
57
|
kind: "entity-card";
|
|
54
58
|
namespace: undefined;
|
|
55
59
|
name: "relations";
|
|
56
60
|
}>;
|
|
57
61
|
"page:catalog-graph": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
optional:
|
|
94
|
-
singleton: boolean;
|
|
62
|
+
config: {
|
|
63
|
+
selectedKinds: string[] | undefined;
|
|
64
|
+
selectedRelations: string[] | undefined;
|
|
65
|
+
rootEntityRefs: string[] | undefined;
|
|
66
|
+
maxDepth: number | undefined;
|
|
67
|
+
unidirectional: boolean | undefined;
|
|
68
|
+
mergeRelations: boolean | undefined;
|
|
69
|
+
direction: Direction | undefined;
|
|
70
|
+
showFilters: boolean | undefined;
|
|
71
|
+
curve: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
72
|
+
kinds: string[] | undefined;
|
|
73
|
+
relations: string[] | undefined;
|
|
74
|
+
relationPairs: [string, string][] | undefined;
|
|
75
|
+
zoom: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
76
|
+
} & {
|
|
77
|
+
path: string | undefined;
|
|
78
|
+
};
|
|
79
|
+
configInput: {
|
|
80
|
+
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
81
|
+
direction?: Direction | undefined;
|
|
82
|
+
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
83
|
+
relations?: string[] | undefined;
|
|
84
|
+
rootEntityRefs?: string[] | undefined;
|
|
85
|
+
maxDepth?: number | undefined;
|
|
86
|
+
kinds?: string[] | undefined;
|
|
87
|
+
unidirectional?: boolean | undefined;
|
|
88
|
+
mergeRelations?: boolean | undefined;
|
|
89
|
+
relationPairs?: [string, string][] | undefined;
|
|
90
|
+
selectedRelations?: string[] | undefined;
|
|
91
|
+
selectedKinds?: string[] | undefined;
|
|
92
|
+
showFilters?: boolean | undefined;
|
|
93
|
+
} & {
|
|
94
|
+
path?: string | undefined;
|
|
95
|
+
};
|
|
96
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
97
|
+
optional: true;
|
|
95
98
|
}>;
|
|
96
|
-
|
|
99
|
+
inputs: {
|
|
100
|
+
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.AnyExtensionDataRef, {
|
|
101
|
+
optional: boolean;
|
|
102
|
+
singleton: boolean;
|
|
103
|
+
}>;
|
|
104
|
+
};
|
|
97
105
|
kind: "page";
|
|
98
106
|
namespace: undefined;
|
|
99
107
|
name: undefined;
|
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.9-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@backstage/catalog-client": "^1.6.6",
|
|
52
52
|
"@backstage/catalog-model": "^1.6.0",
|
|
53
|
-
"@backstage/core-compat-api": "^0.2.
|
|
53
|
+
"@backstage/core-compat-api": "^0.2.9-next.0",
|
|
54
54
|
"@backstage/core-components": "^0.14.10",
|
|
55
55
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
56
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
57
|
-
"@backstage/plugin-catalog-react": "^1.12.
|
|
56
|
+
"@backstage/frontend-plugin-api": "^0.8.0-next.0",
|
|
57
|
+
"@backstage/plugin-catalog-react": "^1.12.4-next.0",
|
|
58
58
|
"@backstage/types": "^1.1.1",
|
|
59
59
|
"@material-ui/core": "^4.12.2",
|
|
60
60
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"react-use": "^17.2.4"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/cli": "^0.27.0",
|
|
70
|
+
"@backstage/cli": "^0.27.1-next.0",
|
|
71
71
|
"@backstage/core-app-api": "^1.14.2",
|
|
72
|
-
"@backstage/dev-utils": "^1.0.
|
|
73
|
-
"@backstage/plugin-catalog": "^1.22.0",
|
|
74
|
-
"@backstage/test-utils": "^1.
|
|
72
|
+
"@backstage/dev-utils": "^1.0.38-next.0",
|
|
73
|
+
"@backstage/plugin-catalog": "^1.22.1-next.0",
|
|
74
|
+
"@backstage/test-utils": "^1.6.0-next.0",
|
|
75
75
|
"@testing-library/dom": "^10.0.0",
|
|
76
76
|
"@testing-library/jest-dom": "^6.0.0",
|
|
77
77
|
"@testing-library/react": "^15.0.0",
|