@backstage/plugin-catalog 1.12.1-next.0 → 1.12.1-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 +27 -0
- package/dist/index.d.ts +4 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.12.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.1-next.1
|
|
9
|
+
- @backstage/integration-react@1.1.16-next.1
|
|
10
|
+
|
|
11
|
+
## 1.12.1-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/integration-react@1.1.16-next.1
|
|
17
|
+
- @backstage/catalog-client@1.4.3
|
|
18
|
+
- @backstage/catalog-model@1.4.1
|
|
19
|
+
- @backstage/core-components@0.13.4-next.0
|
|
20
|
+
- @backstage/core-plugin-api@1.5.3
|
|
21
|
+
- @backstage/errors@1.2.1
|
|
22
|
+
- @backstage/theme@0.4.1
|
|
23
|
+
- @backstage/types@1.1.0
|
|
24
|
+
- @backstage/plugin-catalog-common@1.0.15
|
|
25
|
+
- @backstage/plugin-catalog-react@1.8.1-next.0
|
|
26
|
+
- @backstage/plugin-scaffolder-common@1.3.2
|
|
27
|
+
- @backstage/plugin-search-common@1.2.5
|
|
28
|
+
- @backstage/plugin-search-react@1.6.4-next.0
|
|
29
|
+
|
|
3
30
|
## 1.12.1-next.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -297,6 +297,10 @@ declare const FilteredEntityLayout: (props: {
|
|
|
297
297
|
*/
|
|
298
298
|
declare const FilterContainer: (props: {
|
|
299
299
|
children: React$1.ReactNode;
|
|
300
|
+
options?: {
|
|
301
|
+
drawerBreakpoint?: number | "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
302
|
+
drawerAnchor?: "left" | "top" | "bottom" | "right" | undefined;
|
|
303
|
+
} | undefined;
|
|
300
304
|
}) => JSX.Element;
|
|
301
305
|
/**
|
|
302
306
|
* @public
|
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.12.1-next.
|
|
4
|
+
"version": "1.12.1-next.2",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@backstage/core-components": "^0.13.4-next.0",
|
|
38
38
|
"@backstage/core-plugin-api": "^1.5.3",
|
|
39
39
|
"@backstage/errors": "^1.2.1",
|
|
40
|
-
"@backstage/integration-react": "^1.1.16-next.
|
|
40
|
+
"@backstage/integration-react": "^1.1.16-next.1",
|
|
41
41
|
"@backstage/plugin-catalog-common": "^1.0.15",
|
|
42
|
-
"@backstage/plugin-catalog-react": "^1.8.1-next.
|
|
42
|
+
"@backstage/plugin-catalog-react": "^1.8.1-next.1",
|
|
43
43
|
"@backstage/plugin-scaffolder-common": "^1.3.2",
|
|
44
44
|
"@backstage/plugin-search-common": "^1.2.5",
|
|
45
45
|
"@backstage/plugin-search-react": "^1.6.4-next.0",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/cli": "^0.22.10-next.
|
|
65
|
+
"@backstage/cli": "^0.22.10-next.1",
|
|
66
66
|
"@backstage/core-app-api": "^1.9.1-next.0",
|
|
67
|
-
"@backstage/dev-utils": "^1.0.18-next.
|
|
67
|
+
"@backstage/dev-utils": "^1.0.18-next.2",
|
|
68
68
|
"@backstage/plugin-permission-react": "^0.4.14",
|
|
69
69
|
"@backstage/test-utils": "^1.4.2-next.0",
|
|
70
70
|
"@testing-library/dom": "^8.0.0",
|