@backstage/plugin-catalog-graph 0.6.1 → 0.6.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 +20 -0
- package/dist/alpha.d.ts +20 -20
- package/dist/alpha.esm.js +31 -34
- package/dist/alpha.esm.js.map +1 -1
- package/dist/package.json.esm.js +3 -2
- package/dist/package.json.esm.js.map +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
+
## 0.6.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bc41a91: The `zod` dependency has been bumped from `^3.25.76 || ^4.0.0` to `^4.0.0`, since `configSchema` requires the full Zod v4 package for JSON Schema support.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/ui@0.14.2
|
|
10
|
+
- @backstage/frontend-plugin-api@0.16.2
|
|
11
|
+
- @backstage/plugin-catalog-react@2.1.4
|
|
12
|
+
|
|
13
|
+
## 0.6.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 6b60bd7: Replaced old config schema values from existing extensions and blueprints.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/ui@0.14.1
|
|
20
|
+
- @backstage/frontend-plugin-api@0.16.1
|
|
21
|
+
- @backstage/plugin-catalog-react@2.1.3
|
|
22
|
+
|
|
3
23
|
## 0.6.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -41,18 +41,18 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
41
41
|
type: "content" | "info" | undefined;
|
|
42
42
|
};
|
|
43
43
|
configInput: {
|
|
44
|
-
|
|
45
|
-
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
46
|
-
direction?: "TB" | "BT" | "LR" | "RL" | undefined;
|
|
47
|
-
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
48
|
-
title?: string | undefined;
|
|
49
|
-
showArrowHeads?: boolean | undefined;
|
|
44
|
+
kinds?: string[] | undefined;
|
|
50
45
|
relations?: string[] | undefined;
|
|
51
46
|
maxDepth?: number | undefined;
|
|
52
|
-
|
|
47
|
+
unidirectional?: boolean | undefined;
|
|
53
48
|
mergeRelations?: boolean | undefined;
|
|
49
|
+
showArrowHeads?: boolean | undefined;
|
|
50
|
+
direction?: "TB" | "BT" | "LR" | "RL" | undefined;
|
|
54
51
|
relationPairs?: [string, string][] | undefined;
|
|
55
|
-
|
|
52
|
+
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
53
|
+
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
54
|
+
title?: string | undefined;
|
|
55
|
+
height?: number | undefined;
|
|
56
56
|
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
57
57
|
type?: "content" | "info" | undefined;
|
|
58
58
|
};
|
|
@@ -92,22 +92,22 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
92
92
|
title: string | undefined;
|
|
93
93
|
};
|
|
94
94
|
configInput: {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
98
|
-
showArrowHeads?: boolean | undefined;
|
|
99
|
-
relations?: string[] | undefined;
|
|
100
|
-
maxDepth?: number | undefined;
|
|
95
|
+
selectedKinds?: string[] | undefined;
|
|
96
|
+
selectedRelations?: string[] | undefined;
|
|
101
97
|
rootEntityRefs?: string[] | undefined;
|
|
102
|
-
|
|
103
|
-
mergeRelations?: boolean | undefined;
|
|
104
|
-
relationPairs?: [string, string][] | undefined;
|
|
98
|
+
maxDepth?: number | undefined;
|
|
105
99
|
unidirectional?: boolean | undefined;
|
|
106
|
-
|
|
107
|
-
|
|
100
|
+
mergeRelations?: boolean | undefined;
|
|
101
|
+
showArrowHeads?: boolean | undefined;
|
|
102
|
+
direction?: "TB" | "BT" | "LR" | "RL" | undefined;
|
|
108
103
|
showFilters?: boolean | undefined;
|
|
109
|
-
|
|
104
|
+
curve?: "curveStepBefore" | "curveMonotoneX" | undefined;
|
|
105
|
+
kinds?: string[] | undefined;
|
|
106
|
+
relations?: string[] | undefined;
|
|
107
|
+
relationPairs?: [string, string][] | undefined;
|
|
108
|
+
zoom?: "disabled" | "enabled" | "enable-on-click" | undefined;
|
|
110
109
|
path?: string | undefined;
|
|
110
|
+
title?: string | undefined;
|
|
111
111
|
};
|
|
112
112
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
113
113
|
optional: true;
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { PageBlueprint, ApiBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
|
+
import { z } from 'zod/v4';
|
|
3
4
|
import { RiMindMap } from '@remixicon/react';
|
|
4
5
|
import { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha';
|
|
5
6
|
import { catalogGraphRouteRef, catalogEntityRouteRef } from './routes.esm.js';
|
|
@@ -8,23 +9,21 @@ import { catalogGraphTranslationRef as catalogGraphTranslationRef$1 } from './tr
|
|
|
8
9
|
|
|
9
10
|
const CatalogGraphEntityCard = EntityCardBlueprint.makeWithOverrides({
|
|
10
11
|
name: "relations",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
height: (z) => z.number().optional()
|
|
27
|
-
}
|
|
12
|
+
configSchema: {
|
|
13
|
+
kinds: z.array(z.string()).optional(),
|
|
14
|
+
relations: z.array(z.string()).optional(),
|
|
15
|
+
maxDepth: z.number().optional(),
|
|
16
|
+
unidirectional: z.boolean().optional(),
|
|
17
|
+
mergeRelations: z.boolean().optional(),
|
|
18
|
+
showArrowHeads: z.boolean().optional(),
|
|
19
|
+
direction: z.nativeEnum(Direction).optional(),
|
|
20
|
+
relationPairs: z.array(z.tuple([z.string(), z.string()])).optional(),
|
|
21
|
+
zoom: z.enum(["enabled", "disabled", "enable-on-click"]).optional(),
|
|
22
|
+
curve: z.enum(["curveStepBefore", "curveMonotoneX"]).optional(),
|
|
23
|
+
// Skipping a "variant" config for now, defaulting to "gridItem" in the component
|
|
24
|
+
// For more details, see this comment: https://github.com/backstage/backstage/pull/22619#discussion_r1477333252
|
|
25
|
+
title: z.string().optional(),
|
|
26
|
+
height: z.number().optional()
|
|
28
27
|
},
|
|
29
28
|
factory(originalFactory, { config }) {
|
|
30
29
|
return originalFactory({
|
|
@@ -33,23 +32,21 @@ const CatalogGraphEntityCard = EntityCardBlueprint.makeWithOverrides({
|
|
|
33
32
|
}
|
|
34
33
|
});
|
|
35
34
|
const CatalogGraphPage = PageBlueprint.makeWithOverrides({
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
zoom: (z) => z.enum(["enabled", "disabled", "enable-on-click"]).optional()
|
|
52
|
-
}
|
|
35
|
+
configSchema: {
|
|
36
|
+
selectedKinds: z.array(z.string()).optional(),
|
|
37
|
+
selectedRelations: z.array(z.string()).optional(),
|
|
38
|
+
rootEntityRefs: z.array(z.string()).optional(),
|
|
39
|
+
maxDepth: z.number().optional(),
|
|
40
|
+
unidirectional: z.boolean().optional(),
|
|
41
|
+
mergeRelations: z.boolean().optional(),
|
|
42
|
+
showArrowHeads: z.boolean().optional(),
|
|
43
|
+
direction: z.nativeEnum(Direction).optional(),
|
|
44
|
+
showFilters: z.boolean().optional(),
|
|
45
|
+
curve: z.enum(["curveStepBefore", "curveMonotoneX"]).optional(),
|
|
46
|
+
kinds: z.array(z.string()).optional(),
|
|
47
|
+
relations: z.array(z.string()).optional(),
|
|
48
|
+
relationPairs: z.array(z.tuple([z.string(), z.string()])).optional(),
|
|
49
|
+
zoom: z.enum(["enabled", "disabled", "enable-on-click"]).optional()
|
|
53
50
|
},
|
|
54
51
|
factory(originalFactory, { config }) {
|
|
55
52
|
return originalFactory({
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ApiBlueprint,\n createFrontendPlugin,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport { RiMindMap } from '@remixicon/react';\nimport { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { catalogGraphRouteRef, catalogEntityRouteRef } from './routes';\nimport {\n catalogGraphApiRef,\n DefaultCatalogGraphApi,\n Direction,\n} from '@backstage/plugin-catalog-graph';\n\nconst CatalogGraphEntityCard = EntityCardBlueprint.makeWithOverrides({\n name: 'relations',\n
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ApiBlueprint,\n createFrontendPlugin,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport { z } from 'zod/v4';\nimport { RiMindMap } from '@remixicon/react';\nimport { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { catalogGraphRouteRef, catalogEntityRouteRef } from './routes';\nimport {\n catalogGraphApiRef,\n DefaultCatalogGraphApi,\n Direction,\n} from '@backstage/plugin-catalog-graph';\n\nconst CatalogGraphEntityCard = EntityCardBlueprint.makeWithOverrides({\n name: 'relations',\n configSchema: {\n kinds: z.array(z.string()).optional(),\n relations: z.array(z.string()).optional(),\n maxDepth: z.number().optional(),\n unidirectional: z.boolean().optional(),\n mergeRelations: z.boolean().optional(),\n showArrowHeads: z.boolean().optional(),\n direction: z.nativeEnum(Direction).optional(),\n relationPairs: z.array(z.tuple([z.string(), z.string()])).optional(),\n zoom: z.enum(['enabled', 'disabled', 'enable-on-click']).optional(),\n curve: z.enum(['curveStepBefore', 'curveMonotoneX']).optional(),\n // Skipping a \"variant\" config for now, defaulting to \"gridItem\" in the component\n // For more details, see this comment: https://github.com/backstage/backstage/pull/22619#discussion_r1477333252\n title: z.string().optional(),\n height: z.number().optional(),\n },\n factory(originalFactory, { config }) {\n return originalFactory({\n loader: async () =>\n import('./components/CatalogGraphCard').then(m => (\n <m.CatalogGraphCard {...config} />\n )),\n });\n },\n});\n\nconst CatalogGraphPage = PageBlueprint.makeWithOverrides({\n configSchema: {\n selectedKinds: z.array(z.string()).optional(),\n selectedRelations: z.array(z.string()).optional(),\n rootEntityRefs: z.array(z.string()).optional(),\n maxDepth: z.number().optional(),\n unidirectional: z.boolean().optional(),\n mergeRelations: z.boolean().optional(),\n showArrowHeads: z.boolean().optional(),\n direction: z.nativeEnum(Direction).optional(),\n showFilters: z.boolean().optional(),\n curve: z.enum(['curveStepBefore', 'curveMonotoneX']).optional(),\n kinds: z.array(z.string()).optional(),\n relations: z.array(z.string()).optional(),\n relationPairs: z.array(z.tuple([z.string(), z.string()])).optional(),\n zoom: z.enum(['enabled', 'disabled', 'enable-on-click']).optional(),\n },\n factory(originalFactory, { config }) {\n return originalFactory({\n path: '/catalog-graph',\n routeRef: catalogGraphRouteRef,\n loader: () =>\n import('./components/CatalogGraphPage').then(m => (\n <m.CatalogGraphPage {...config} />\n )),\n });\n },\n});\n\nconst CatalogGraphApi = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: catalogGraphApiRef,\n deps: {},\n factory: () => new DefaultCatalogGraphApi(),\n }),\n});\n\nexport default createFrontendPlugin({\n pluginId: 'catalog-graph',\n title: 'Catalog Graph',\n icon: <RiMindMap />,\n info: { packageJson: () => import('../package.json') },\n routes: {\n catalogGraph: catalogGraphRouteRef,\n },\n externalRoutes: {\n catalogEntity: catalogEntityRouteRef,\n },\n extensions: [CatalogGraphPage, CatalogGraphEntityCard, CatalogGraphApi],\n});\n\nimport { catalogGraphTranslationRef as _catalogGraphTranslationRef } from './translation';\n\n/**\n * @alpha\n * @deprecated Import from `@backstage/plugin-catalog-graph` instead.\n */\nexport const catalogGraphTranslationRef = _catalogGraphTranslationRef;\n"],"names":["_catalogGraphTranslationRef"],"mappings":"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"}
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-catalog-graph";
|
|
2
|
-
var version = "0.6.
|
|
2
|
+
var version = "0.6.3";
|
|
3
3
|
var backstage = {
|
|
4
4
|
role: "frontend-plugin",
|
|
5
5
|
pluginId: "catalog-graph",
|
|
@@ -64,7 +64,8 @@ var dependencies = {
|
|
|
64
64
|
lodash: "^4.17.15",
|
|
65
65
|
"p-limit": "^3.1.0",
|
|
66
66
|
qs: "^6.9.4",
|
|
67
|
-
"react-use": "^17.2.4"
|
|
67
|
+
"react-use": "^17.2.4",
|
|
68
|
+
zod: "^4.0.0"
|
|
68
69
|
};
|
|
69
70
|
var devDependencies = {
|
|
70
71
|
"@backstage/cli": "workspace:^",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"@backstage/catalog-model": "^1.8.0",
|
|
66
66
|
"@backstage/core-components": "^0.18.9",
|
|
67
67
|
"@backstage/core-plugin-api": "^1.12.5",
|
|
68
|
-
"@backstage/frontend-plugin-api": "^0.16.
|
|
69
|
-
"@backstage/plugin-catalog-react": "^2.1.
|
|
68
|
+
"@backstage/frontend-plugin-api": "^0.16.2",
|
|
69
|
+
"@backstage/plugin-catalog-react": "^2.1.4",
|
|
70
70
|
"@backstage/types": "^1.2.2",
|
|
71
|
-
"@backstage/ui": "^0.14.
|
|
71
|
+
"@backstage/ui": "^0.14.2",
|
|
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",
|
|
@@ -77,14 +77,15 @@
|
|
|
77
77
|
"lodash": "^4.17.15",
|
|
78
78
|
"p-limit": "^3.1.0",
|
|
79
79
|
"qs": "^6.9.4",
|
|
80
|
-
"react-use": "^17.2.4"
|
|
80
|
+
"react-use": "^17.2.4",
|
|
81
|
+
"zod": "^4.0.0"
|
|
81
82
|
},
|
|
82
83
|
"devDependencies": {
|
|
83
84
|
"@backstage/cli": "^0.36.1",
|
|
84
85
|
"@backstage/core-app-api": "^1.20.0",
|
|
85
86
|
"@backstage/dev-utils": "^1.1.22",
|
|
86
87
|
"@backstage/frontend-test-utils": "^0.5.2",
|
|
87
|
-
"@backstage/plugin-catalog": "^2.0.
|
|
88
|
+
"@backstage/plugin-catalog": "^2.0.4",
|
|
88
89
|
"@backstage/test-utils": "^1.7.17",
|
|
89
90
|
"@testing-library/dom": "^10.0.0",
|
|
90
91
|
"@testing-library/jest-dom": "^6.0.0",
|