@backstage/plugin-catalog-graph 0.2.35-next.0 → 0.2.35
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 +17 -4
- package/dist/index.d.ts +4 -5
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
-
## 0.2.35
|
|
3
|
+
## 0.2.35
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/core-components@0.13.5-next.0
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.3
|
|
10
9
|
- @backstage/catalog-client@1.4.3
|
|
11
10
|
- @backstage/catalog-model@1.4.1
|
|
11
|
+
- @backstage/core-components@0.13.4
|
|
12
|
+
- @backstage/core-plugin-api@1.5.3
|
|
13
|
+
- @backstage/theme@0.4.1
|
|
14
|
+
- @backstage/types@1.1.0
|
|
15
|
+
|
|
16
|
+
## 0.2.34
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/plugin-catalog-react@1.8.2
|
|
22
|
+
- @backstage/catalog-client@1.4.3
|
|
23
|
+
- @backstage/catalog-model@1.4.1
|
|
24
|
+
- @backstage/core-components@0.13.4
|
|
25
|
+
- @backstage/core-plugin-api@1.5.3
|
|
12
26
|
- @backstage/theme@0.4.1
|
|
13
27
|
- @backstage/types@1.1.0
|
|
14
|
-
- @backstage/plugin-catalog-react@1.8.3-next.0
|
|
15
28
|
|
|
16
29
|
## 0.2.33
|
|
17
30
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import { CompoundEntityRef } from '@backstage/catalog-model';
|
|
3
3
|
import * as _backstage_core_components from '@backstage/core-components';
|
|
4
4
|
import { DependencyGraphTypes } from '@backstage/core-components';
|
|
5
|
-
import
|
|
6
|
-
import react__default, { MouseEventHandler, MouseEvent } from 'react';
|
|
5
|
+
import { MouseEventHandler, MouseEvent } from 'react';
|
|
7
6
|
import { JsonObject } from '@backstage/types';
|
|
8
7
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
9
8
|
|
|
@@ -137,7 +136,7 @@ type EntityRelationsGraphProps = {
|
|
|
137
136
|
*
|
|
138
137
|
* @public
|
|
139
138
|
*/
|
|
140
|
-
declare const EntityRelationsGraph: (props: EntityRelationsGraphProps) =>
|
|
139
|
+
declare const EntityRelationsGraph: (props: EntityRelationsGraphProps) => JSX.Element;
|
|
141
140
|
|
|
142
141
|
/**
|
|
143
142
|
* A card that displays the directly related entities to the current entity.
|
|
@@ -148,7 +147,7 @@ declare const EntityCatalogGraphCard: (props: Partial<EntityRelationsGraphProps>
|
|
|
148
147
|
variant?: _backstage_core_components.InfoCardVariants | undefined;
|
|
149
148
|
height?: number | undefined;
|
|
150
149
|
title?: string | undefined;
|
|
151
|
-
}) =>
|
|
150
|
+
}) => JSX.Element;
|
|
152
151
|
/**
|
|
153
152
|
* A standalone page that can be added to your application providing a viewer
|
|
154
153
|
* for your entities and their relations.
|
|
@@ -167,7 +166,7 @@ declare const CatalogGraphPage: (props: {
|
|
|
167
166
|
showFilters?: boolean | undefined;
|
|
168
167
|
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
169
168
|
} | undefined;
|
|
170
|
-
} & Partial<EntityRelationsGraphProps>) =>
|
|
169
|
+
} & Partial<EntityRelationsGraphProps>) => JSX.Element;
|
|
171
170
|
|
|
172
171
|
/**
|
|
173
172
|
* Catalog Graph Plugin instance.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.2.35
|
|
3
|
+
"version": "0.2.35",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@backstage/catalog-client": "^1.4.3",
|
|
32
32
|
"@backstage/catalog-model": "^1.4.1",
|
|
33
|
-
"@backstage/core-components": "^0.13.
|
|
34
|
-
"@backstage/core-plugin-api": "^1.
|
|
35
|
-
"@backstage/plugin-catalog-react": "^1.8.3
|
|
33
|
+
"@backstage/core-components": "^0.13.4",
|
|
34
|
+
"@backstage/core-plugin-api": "^1.5.3",
|
|
35
|
+
"@backstage/plugin-catalog-react": "^1.8.3",
|
|
36
36
|
"@backstage/theme": "^0.4.1",
|
|
37
37
|
"@backstage/types": "^1.1.0",
|
|
38
38
|
"@material-ui/core": "^4.12.2",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.22.12
|
|
55
|
-
"@backstage/core-app-api": "^1.
|
|
56
|
-
"@backstage/dev-utils": "^1.0.20
|
|
57
|
-
"@backstage/plugin-catalog": "^1.12.4
|
|
58
|
-
"@backstage/test-utils": "^1.4.
|
|
54
|
+
"@backstage/cli": "^0.22.12",
|
|
55
|
+
"@backstage/core-app-api": "^1.9.1",
|
|
56
|
+
"@backstage/dev-utils": "^1.0.20",
|
|
57
|
+
"@backstage/plugin-catalog": "^1.12.4",
|
|
58
|
+
"@backstage/test-utils": "^1.4.2",
|
|
59
59
|
"@testing-library/dom": "^8.0.0",
|
|
60
60
|
"@testing-library/jest-dom": "^5.10.1",
|
|
61
61
|
"@testing-library/react": "^12.1.3",
|