@backstage/plugin-catalog-react 1.1.2-next.3 → 1.1.3-next.1
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 +75 -0
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +544 -320
- package/dist/index.esm.js.map +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,80 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.1.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-components@0.10.1-next.1
|
|
9
|
+
- @backstage/plugin-catalog-common@1.0.5-next.0
|
|
10
|
+
- @backstage/integration@1.3.0-next.1
|
|
11
|
+
|
|
12
|
+
## 1.1.3-next.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/integration@1.3.0-next.0
|
|
18
|
+
- @backstage/core-plugin-api@1.0.5-next.0
|
|
19
|
+
- @backstage/core-components@0.10.1-next.0
|
|
20
|
+
- @backstage/plugin-permission-react@0.4.4-next.0
|
|
21
|
+
|
|
22
|
+
## 1.1.2
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 72622d9143: Updated dependency `yaml` to `^2.0.0`.
|
|
27
|
+
- be26d95141: Added new `EntityProcessingStatusPicker` that will filter for entities with orphans and/or errors.
|
|
28
|
+
|
|
29
|
+
If you are using the default Catalog page this picker will be added automatically. For those who have customized their Catalog page you'll need to add this manually by doing something like this:
|
|
30
|
+
|
|
31
|
+
```diff
|
|
32
|
+
...
|
|
33
|
+
import {
|
|
34
|
+
CatalogFilterLayout,
|
|
35
|
+
EntityTypePicker,
|
|
36
|
+
UserListPicker,
|
|
37
|
+
EntityTagPicker
|
|
38
|
+
+ EntityProcessingStatusPicker,
|
|
39
|
+
} from '@backstage/plugin-catalog-react';
|
|
40
|
+
...
|
|
41
|
+
export const CustomCatalogPage = ({
|
|
42
|
+
columns,
|
|
43
|
+
actions,
|
|
44
|
+
initiallySelectedFilter = 'owned',
|
|
45
|
+
}: CatalogPageProps) => {
|
|
46
|
+
return (
|
|
47
|
+
...
|
|
48
|
+
<EntityListProvider>
|
|
49
|
+
<CatalogFilterLayout>
|
|
50
|
+
<CatalogFilterLayout.Filters>
|
|
51
|
+
<EntityKindPicker initialFilter="component" hidden />
|
|
52
|
+
<EntityTypePicker />
|
|
53
|
+
<UserListPicker initialFilter={initiallySelectedFilter} />
|
|
54
|
+
<EntityTagPicker />
|
|
55
|
+
+ <EntityProcessingStatusPicker />
|
|
56
|
+
<CatalogFilterLayout.Filters>
|
|
57
|
+
<CatalogFilterLayout.Content>
|
|
58
|
+
<CatalogTable columns={columns} actions={actions} />
|
|
59
|
+
</CatalogFilterLayout.Content>
|
|
60
|
+
</CatalogFilterLayout>
|
|
61
|
+
</EntityListProvider>
|
|
62
|
+
...
|
|
63
|
+
};
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
- Updated dependencies
|
|
67
|
+
- @backstage/core-components@0.10.0
|
|
68
|
+
- @backstage/catalog-model@1.1.0
|
|
69
|
+
- @backstage/core-plugin-api@1.0.4
|
|
70
|
+
- @backstage/integration@1.2.2
|
|
71
|
+
- @backstage/catalog-client@1.0.4
|
|
72
|
+
- @backstage/plugin-permission-common@0.6.3
|
|
73
|
+
- @backstage/theme@0.2.16
|
|
74
|
+
- @backstage/errors@1.1.0
|
|
75
|
+
- @backstage/plugin-catalog-common@1.0.4
|
|
76
|
+
- @backstage/plugin-permission-react@0.4.3
|
|
77
|
+
|
|
3
78
|
## 1.1.2-next.3
|
|
4
79
|
|
|
5
80
|
### Patch Changes
|