@backstage/plugin-catalog 1.10.0-next.1 → 1.10.0-next.2
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 +18 -0
- package/dist/index.d.ts +11 -11
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.10.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/catalog-client@1.4.1-next.0
|
|
9
|
+
- @backstage/core-components@0.12.6-next.2
|
|
10
|
+
- @backstage/plugin-catalog-react@1.4.1-next.2
|
|
11
|
+
- @backstage/core-plugin-api@1.5.1-next.1
|
|
12
|
+
- @backstage/catalog-model@1.2.1
|
|
13
|
+
- @backstage/errors@1.1.5
|
|
14
|
+
- @backstage/integration-react@1.1.12-next.2
|
|
15
|
+
- @backstage/theme@0.2.19-next.0
|
|
16
|
+
- @backstage/types@1.0.2
|
|
17
|
+
- @backstage/plugin-catalog-common@1.0.13-next.0
|
|
18
|
+
- @backstage/plugin-search-common@1.2.3-next.0
|
|
19
|
+
- @backstage/plugin-search-react@1.5.2-next.2
|
|
20
|
+
|
|
3
21
|
## 1.10.0-next.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ declare const CatalogTable: {
|
|
|
137
137
|
};
|
|
138
138
|
|
|
139
139
|
/** @public */
|
|
140
|
-
|
|
140
|
+
type EntityLayoutRouteProps = {
|
|
141
141
|
path: string;
|
|
142
142
|
title: string;
|
|
143
143
|
children: JSX.Element;
|
|
@@ -151,7 +151,7 @@ interface ExtraContextMenuItem {
|
|
|
151
151
|
Icon: IconComponent;
|
|
152
152
|
onClick: () => void;
|
|
153
153
|
}
|
|
154
|
-
|
|
154
|
+
type VisibleType = 'visible' | 'hidden' | 'disable';
|
|
155
155
|
interface EntityContextMenuOptions {
|
|
156
156
|
disableUnregister: boolean | VisibleType;
|
|
157
157
|
}
|
|
@@ -289,9 +289,9 @@ declare const EntityListContainer: (props: {
|
|
|
289
289
|
}) => JSX.Element;
|
|
290
290
|
|
|
291
291
|
/** @public */
|
|
292
|
-
|
|
292
|
+
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
293
293
|
/** @public */
|
|
294
|
-
|
|
294
|
+
type ColumnBreakpoints = Record<Breakpoint, number>;
|
|
295
295
|
|
|
296
296
|
/** @public */
|
|
297
297
|
interface EntityLinksCardProps {
|
|
@@ -300,22 +300,22 @@ interface EntityLinksCardProps {
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
/** @public */
|
|
303
|
-
|
|
303
|
+
type EntityLinksEmptyStateClassKey = 'code';
|
|
304
304
|
|
|
305
305
|
/** @public */
|
|
306
|
-
|
|
306
|
+
type SystemDiagramCardClassKey = 'domainNode' | 'systemNode' | 'componentNode' | 'apiNode' | 'resourceNode';
|
|
307
307
|
|
|
308
308
|
/** @public */
|
|
309
|
-
|
|
309
|
+
type EntityContextMenuClassKey = 'button';
|
|
310
310
|
|
|
311
311
|
/** @public */
|
|
312
|
-
|
|
312
|
+
type PluginCatalogComponentsNameToClassKey = {
|
|
313
313
|
PluginCatalogEntityLinksEmptyState: EntityLinksEmptyStateClassKey;
|
|
314
314
|
PluginCatalogSystemDiagramCard: SystemDiagramCardClassKey;
|
|
315
315
|
PluginCatalogEntityContextMenu: EntityContextMenuClassKey;
|
|
316
316
|
};
|
|
317
317
|
/** @public */
|
|
318
|
-
|
|
318
|
+
type BackstageOverrides = Overrides & {
|
|
319
319
|
[Name in keyof PluginCatalogComponentsNameToClassKey]?: Partial<StyleRules<PluginCatalogComponentsNameToClassKey[Name]>>;
|
|
320
320
|
};
|
|
321
321
|
|
|
@@ -388,7 +388,7 @@ interface HasSystemsCardProps {
|
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
/** @public */
|
|
391
|
-
|
|
391
|
+
type RelatedEntitiesCardProps<T extends Entity> = {
|
|
392
392
|
variant?: InfoCardVariants;
|
|
393
393
|
title: string;
|
|
394
394
|
columns: TableColumn<T>[];
|
|
@@ -412,7 +412,7 @@ interface CatalogSearchResultListItemProps {
|
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
/** @ignore */
|
|
415
|
-
|
|
415
|
+
type CatalogInputPluginOptions = {
|
|
416
416
|
createButtonTitle: string;
|
|
417
417
|
};
|
|
418
418
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog",
|
|
3
3
|
"description": "The Backstage plugin for browsing the Backstage catalog",
|
|
4
|
-
"version": "1.10.0-next.
|
|
4
|
+
"version": "1.10.0-next.2",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-client": "^1.4.0",
|
|
35
|
+
"@backstage/catalog-client": "^1.4.1-next.0",
|
|
36
36
|
"@backstage/catalog-model": "^1.2.1",
|
|
37
|
-
"@backstage/core-components": "^0.12.6-next.
|
|
38
|
-
"@backstage/core-plugin-api": "^1.5.1-next.
|
|
37
|
+
"@backstage/core-components": "^0.12.6-next.2",
|
|
38
|
+
"@backstage/core-plugin-api": "^1.5.1-next.1",
|
|
39
39
|
"@backstage/errors": "^1.1.5",
|
|
40
|
-
"@backstage/integration-react": "^1.1.12-next.
|
|
40
|
+
"@backstage/integration-react": "^1.1.12-next.2",
|
|
41
41
|
"@backstage/plugin-catalog-common": "^1.0.13-next.0",
|
|
42
|
-
"@backstage/plugin-catalog-react": "^1.4.1-next.
|
|
42
|
+
"@backstage/plugin-catalog-react": "^1.4.1-next.2",
|
|
43
43
|
"@backstage/plugin-search-common": "^1.2.3-next.0",
|
|
44
|
-
"@backstage/plugin-search-react": "^1.5.2-next.
|
|
44
|
+
"@backstage/plugin-search-react": "^1.5.2-next.2",
|
|
45
45
|
"@backstage/theme": "^0.2.19-next.0",
|
|
46
46
|
"@backstage/types": "^1.0.2",
|
|
47
47
|
"@material-ui/core": "^4.12.2",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/cli": "^0.22.6-next.
|
|
65
|
-
"@backstage/core-app-api": "^1.7.0-next.
|
|
66
|
-
"@backstage/dev-utils": "^1.0.14-next.
|
|
67
|
-
"@backstage/plugin-permission-react": "^0.4.12-next.
|
|
68
|
-
"@backstage/test-utils": "^1.3.0-next.
|
|
64
|
+
"@backstage/cli": "^0.22.6-next.2",
|
|
65
|
+
"@backstage/core-app-api": "^1.7.0-next.2",
|
|
66
|
+
"@backstage/dev-utils": "^1.0.14-next.2",
|
|
67
|
+
"@backstage/plugin-permission-react": "^0.4.12-next.1",
|
|
68
|
+
"@backstage/test-utils": "^1.3.0-next.2",
|
|
69
69
|
"@testing-library/dom": "^8.0.0",
|
|
70
70
|
"@testing-library/jest-dom": "^5.10.1",
|
|
71
71
|
"@testing-library/react": "^12.1.3",
|