@backstage/plugin-catalog-graph 0.2.34 → 0.2.35-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 +4 -4
- package/dist/index.d.ts +5 -4
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
-
## 0.2.
|
|
3
|
+
## 0.2.35-next.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/plugin-
|
|
8
|
+
- @backstage/core-plugin-api@1.6.0-next.0
|
|
9
|
+
- @backstage/core-components@0.13.5-next.0
|
|
9
10
|
- @backstage/catalog-client@1.4.3
|
|
10
11
|
- @backstage/catalog-model@1.4.1
|
|
11
|
-
- @backstage/core-components@0.13.4
|
|
12
|
-
- @backstage/core-plugin-api@1.5.3
|
|
13
12
|
- @backstage/theme@0.4.1
|
|
14
13
|
- @backstage/types@1.1.0
|
|
14
|
+
- @backstage/plugin-catalog-react@1.8.3-next.0
|
|
15
15
|
|
|
16
16
|
## 0.2.33
|
|
17
17
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
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
|
|
5
|
+
import * as react from 'react';
|
|
6
|
+
import react__default, { MouseEventHandler, MouseEvent } from 'react';
|
|
6
7
|
import { JsonObject } from '@backstage/types';
|
|
7
8
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
8
9
|
|
|
@@ -136,7 +137,7 @@ type EntityRelationsGraphProps = {
|
|
|
136
137
|
*
|
|
137
138
|
* @public
|
|
138
139
|
*/
|
|
139
|
-
declare const EntityRelationsGraph: (props: EntityRelationsGraphProps) => JSX.Element;
|
|
140
|
+
declare const EntityRelationsGraph: (props: EntityRelationsGraphProps) => react__default.JSX.Element;
|
|
140
141
|
|
|
141
142
|
/**
|
|
142
143
|
* A card that displays the directly related entities to the current entity.
|
|
@@ -147,7 +148,7 @@ declare const EntityCatalogGraphCard: (props: Partial<EntityRelationsGraphProps>
|
|
|
147
148
|
variant?: _backstage_core_components.InfoCardVariants | undefined;
|
|
148
149
|
height?: number | undefined;
|
|
149
150
|
title?: string | undefined;
|
|
150
|
-
}) => JSX.Element;
|
|
151
|
+
}) => react.JSX.Element;
|
|
151
152
|
/**
|
|
152
153
|
* A standalone page that can be added to your application providing a viewer
|
|
153
154
|
* for your entities and their relations.
|
|
@@ -166,7 +167,7 @@ declare const CatalogGraphPage: (props: {
|
|
|
166
167
|
showFilters?: boolean | undefined;
|
|
167
168
|
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
168
169
|
} | undefined;
|
|
169
|
-
} & Partial<EntityRelationsGraphProps>) => JSX.Element;
|
|
170
|
+
} & Partial<EntityRelationsGraphProps>) => react.JSX.Element;
|
|
170
171
|
|
|
171
172
|
/**
|
|
172
173
|
* 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.
|
|
3
|
+
"version": "0.2.35-next.0",
|
|
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.
|
|
33
|
+
"@backstage/core-components": "^0.13.5-next.0",
|
|
34
|
+
"@backstage/core-plugin-api": "^1.6.0-next.0",
|
|
35
|
+
"@backstage/plugin-catalog-react": "^1.8.3-next.0",
|
|
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.
|
|
55
|
-
"@backstage/core-app-api": "^1.
|
|
56
|
-
"@backstage/dev-utils": "^1.0.
|
|
57
|
-
"@backstage/plugin-catalog": "^1.12.
|
|
58
|
-
"@backstage/test-utils": "^1.4.
|
|
54
|
+
"@backstage/cli": "^0.22.12-next.0",
|
|
55
|
+
"@backstage/core-app-api": "^1.10.0-next.0",
|
|
56
|
+
"@backstage/dev-utils": "^1.0.20-next.0",
|
|
57
|
+
"@backstage/plugin-catalog": "^1.12.4-next.0",
|
|
58
|
+
"@backstage/test-utils": "^1.4.3-next.0",
|
|
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",
|