@backstage/plugin-catalog-graph 0.2.29-next.1 → 0.2.29-next.3

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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-catalog-graph
2
2
 
3
+ ## 0.2.29-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.5.0-next.3
9
+ - @backstage/catalog-model@1.3.0-next.0
10
+ - @backstage/core-components@0.13.0-next.3
11
+ - @backstage/catalog-client@1.4.1-next.1
12
+ - @backstage/core-plugin-api@1.5.1-next.1
13
+ - @backstage/theme@0.2.19-next.0
14
+
15
+ ## 0.2.29-next.2
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ - @backstage/catalog-client@1.4.1-next.0
21
+ - @backstage/core-components@0.12.6-next.2
22
+ - @backstage/plugin-catalog-react@1.4.1-next.2
23
+ - @backstage/core-plugin-api@1.5.1-next.1
24
+ - @backstage/catalog-model@1.2.1
25
+ - @backstage/theme@0.2.19-next.0
26
+
3
27
  ## 0.2.29-next.1
4
28
 
5
29
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
11
11
  *
12
12
  * @public
13
13
  */
14
- declare type RelationPairs = [string, string][];
14
+ type RelationPairs = [string, string][];
15
15
  /**
16
16
  * A list of pairs of entity relations, used to define which relations are
17
17
  * merged together and which the primary relation is.
@@ -25,7 +25,7 @@ declare const ALL_RELATION_PAIRS: RelationPairs;
25
25
  *
26
26
  * @public
27
27
  */
28
- declare type EntityEdgeData = {
28
+ type EntityEdgeData = {
29
29
  /**
30
30
  * Up to two relations that are connecting an entity.
31
31
  */
@@ -40,13 +40,13 @@ declare type EntityEdgeData = {
40
40
  *
41
41
  * @public
42
42
  */
43
- declare type EntityEdge = DependencyGraphTypes.DependencyEdge<EntityEdgeData>;
43
+ type EntityEdge = DependencyGraphTypes.DependencyEdge<EntityEdgeData>;
44
44
  /**
45
45
  * Additional data for Entity Node
46
46
  *
47
47
  * @public
48
48
  */
49
- declare type EntityNodeData = {
49
+ type EntityNodeData = {
50
50
  /**
51
51
  * Name of the entity.
52
52
  */
@@ -82,7 +82,7 @@ declare type EntityNodeData = {
82
82
  *
83
83
  * @public
84
84
  */
85
- declare type EntityNode = DependencyGraphTypes.DependencyNode<EntityNodeData>;
85
+ type EntityNode = DependencyGraphTypes.DependencyNode<EntityNodeData>;
86
86
  /**
87
87
  * Render direction of the graph.
88
88
  *
@@ -110,7 +110,7 @@ declare enum Direction {
110
110
  /**
111
111
  * @public
112
112
  */
113
- declare type EntityRelationsGraphProps = {
113
+ type EntityRelationsGraphProps = {
114
114
  rootEntityNames: CompoundEntityRef | CompoundEntityRef[];
115
115
  maxDepth?: number;
116
116
  unidirectional?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-graph",
3
- "version": "0.2.29-next.1",
3
+ "version": "0.2.29-next.3",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -22,11 +22,11 @@
22
22
  "clean": "backstage-cli package clean"
23
23
  },
24
24
  "dependencies": {
25
- "@backstage/catalog-client": "^1.4.0",
26
- "@backstage/catalog-model": "^1.2.1",
27
- "@backstage/core-components": "^0.12.6-next.1",
28
- "@backstage/core-plugin-api": "^1.5.1-next.0",
29
- "@backstage/plugin-catalog-react": "^1.4.1-next.1",
25
+ "@backstage/catalog-client": "^1.4.1-next.1",
26
+ "@backstage/catalog-model": "^1.3.0-next.0",
27
+ "@backstage/core-components": "^0.13.0-next.3",
28
+ "@backstage/core-plugin-api": "^1.5.1-next.1",
29
+ "@backstage/plugin-catalog-react": "^1.5.0-next.3",
30
30
  "@backstage/theme": "^0.2.19-next.0",
31
31
  "@material-ui/core": "^4.12.2",
32
32
  "@material-ui/icons": "^4.9.1",
@@ -44,11 +44,11 @@
44
44
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/cli": "^0.22.6-next.1",
48
- "@backstage/core-app-api": "^1.7.0-next.1",
49
- "@backstage/dev-utils": "^1.0.14-next.1",
50
- "@backstage/plugin-catalog": "^1.10.0-next.1",
51
- "@backstage/test-utils": "^1.3.0-next.1",
47
+ "@backstage/cli": "^0.22.6-next.3",
48
+ "@backstage/core-app-api": "^1.7.0-next.3",
49
+ "@backstage/dev-utils": "^1.0.14-next.3",
50
+ "@backstage/plugin-catalog": "^1.10.0-next.3",
51
+ "@backstage/test-utils": "^1.3.0-next.3",
52
52
  "@backstage/types": "^1.0.2",
53
53
  "@testing-library/dom": "^8.0.0",
54
54
  "@testing-library/jest-dom": "^5.10.1",