@backstage/plugin-catalog-react 1.6.0 → 1.7.0-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 +45 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +256 -266
- package/dist/index.esm.js.map +1 -1
- package/package.json +17 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.7.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 429319d080cd: `EntityAutocompletePicker` add `initialSelectedOptions` prop
|
|
8
|
+
- 429319d080cd: `EntityLifecycleFilter` loads data using the facets endpoint
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/integration@1.5.0-next.0
|
|
11
|
+
- @backstage/errors@1.2.0-next.0
|
|
12
|
+
- @backstage/core-components@0.13.2-next.1
|
|
13
|
+
- @backstage/catalog-model@1.4.0-next.0
|
|
14
|
+
- @backstage/core-plugin-api@1.5.2-next.0
|
|
15
|
+
- @backstage/catalog-client@1.4.2-next.1
|
|
16
|
+
- @backstage/plugin-permission-common@0.7.6-next.0
|
|
17
|
+
- @backstage/plugin-catalog-common@1.0.14-next.0
|
|
18
|
+
- @backstage/theme@0.4.0-next.0
|
|
19
|
+
- @backstage/types@1.0.2
|
|
20
|
+
- @backstage/version-bridge@1.0.4
|
|
21
|
+
- @backstage/plugin-permission-react@0.4.13-next.0
|
|
22
|
+
|
|
23
|
+
## 1.7.0-next.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- cb4c15989b6b: The `EntityOwnerPicker` component has undergone improvements to enhance its performance.
|
|
28
|
+
|
|
29
|
+
The component now loads entities asynchronously, resulting in improved performance and responsiveness. Instead of loading all entities upfront, they are now loaded in batches as the user scrolls.
|
|
30
|
+
The previous implementation inferred users and groups displayed by the `EntityOwnerPicker` component based on the entities available in the `EntityListContext`. The updated version no longer relies on the `EntityListContext` for inference, allowing for better decoupling and improved performance.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/catalog-client@1.4.2-next.0
|
|
36
|
+
- @backstage/theme@0.4.0-next.0
|
|
37
|
+
- @backstage/integration@1.4.5
|
|
38
|
+
- @backstage/core-components@0.13.2-next.0
|
|
39
|
+
- @backstage/core-plugin-api@1.5.1
|
|
40
|
+
- @backstage/plugin-permission-react@0.4.12
|
|
41
|
+
- @backstage/catalog-model@1.3.0
|
|
42
|
+
- @backstage/errors@1.1.5
|
|
43
|
+
- @backstage/types@1.0.2
|
|
44
|
+
- @backstage/version-bridge@1.0.4
|
|
45
|
+
- @backstage/plugin-catalog-common@1.0.13
|
|
46
|
+
- @backstage/plugin-permission-common@0.7.5
|
|
47
|
+
|
|
3
48
|
## 1.6.0
|
|
4
49
|
|
|
5
50
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ type CatalogReactEntityLifecyclePickerClassKey = 'input';
|
|
|
91
91
|
/** @public */
|
|
92
92
|
declare const EntityLifecyclePicker: (props: {
|
|
93
93
|
initialFilter?: string[];
|
|
94
|
-
}) => JSX.Element
|
|
94
|
+
}) => JSX.Element;
|
|
95
95
|
|
|
96
96
|
/** @public */
|
|
97
97
|
type CatalogReactEntityOwnerPickerClassKey = 'input';
|
|
@@ -143,7 +143,8 @@ declare function EntityRefLinks<TRef extends string | CompoundEntityRef | Entity
|
|
|
143
143
|
* @param defaultNamespace - if set to false then namespace is never omitted,
|
|
144
144
|
* if set to string which matches namespace of entity then omitted
|
|
145
145
|
*
|
|
146
|
-
* @public
|
|
146
|
+
* @public
|
|
147
|
+
**/
|
|
147
148
|
declare function humanizeEntityRef(entityRef: Entity | CompoundEntityRef, opts?: {
|
|
148
149
|
defaultKind?: string;
|
|
149
150
|
defaultNamespace?: string | false;
|