@backstage/plugin-catalog-react 1.2.0-next.2 → 1.2.0
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 +24 -0
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +1 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4efadb6968: Implemented the visual parts of `EntityKindPicker` so that it can be shown alongside the other filters on the left side of your catalog pages.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7939e743f5: Added two new `EntityRefLinks` props, the first being `getTitle` that allows for customization of the title used for each link. The second one is `fetchEntities`, which triggers a fetching of all entities so that the full entity definition is available in the `getTitle` callback.
|
|
12
|
+
- e9e532ebd8: Fixed issue where the query kind parameter is not honored
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/catalog-model@1.1.2
|
|
15
|
+
- @backstage/core-components@0.11.2
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.7
|
|
17
|
+
- @backstage/plugin-permission-common@0.7.0
|
|
18
|
+
- @backstage/catalog-client@1.1.1
|
|
19
|
+
- @backstage/core-plugin-api@1.0.7
|
|
20
|
+
- @backstage/errors@1.1.2
|
|
21
|
+
- @backstage/integration@1.3.2
|
|
22
|
+
- @backstage/theme@0.2.16
|
|
23
|
+
- @backstage/types@1.0.0
|
|
24
|
+
- @backstage/version-bridge@1.0.1
|
|
25
|
+
- @backstage/plugin-permission-react@0.4.6
|
|
26
|
+
|
|
3
27
|
## 1.2.0-next.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -932,10 +932,7 @@ const EntityKindPicker = (props) => {
|
|
|
932
932
|
severity: "error"
|
|
933
933
|
});
|
|
934
934
|
}
|
|
935
|
-
|
|
936
|
-
setSelectedKind(initialFilter);
|
|
937
|
-
}
|
|
938
|
-
}, [error, alertApi, initialFilter, setSelectedKind]);
|
|
935
|
+
}, [error, alertApi]);
|
|
939
936
|
if ((availableKinds == null ? void 0 : availableKinds.length) === 0 || error)
|
|
940
937
|
return null;
|
|
941
938
|
const items = [
|