@backstage/plugin-catalog-react 1.2.2-next.0 → 1.2.2-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 CHANGED
@@ -1,5 +1,43 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.2.2-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6ffa47bb0a: Cleanup and small fixes for the kind selector
8
+ - Updated dependencies
9
+ - @backstage/core-plugin-api@1.2.0-next.2
10
+ - @backstage/core-components@0.12.1-next.2
11
+ - @backstage/plugin-permission-react@0.4.8-next.2
12
+ - @backstage/catalog-client@1.2.0-next.1
13
+ - @backstage/catalog-model@1.1.4-next.1
14
+ - @backstage/errors@1.1.4-next.1
15
+ - @backstage/integration@1.4.1-next.1
16
+ - @backstage/theme@0.2.16
17
+ - @backstage/types@1.0.2-next.1
18
+ - @backstage/version-bridge@1.0.3-next.0
19
+ - @backstage/plugin-catalog-common@1.0.9-next.2
20
+ - @backstage/plugin-permission-common@0.7.2-next.1
21
+
22
+ ## 1.2.2-next.1
23
+
24
+ ### Patch Changes
25
+
26
+ - c3fa90e184: Updated dependency `zen-observable` to `^0.10.0`.
27
+ - Updated dependencies
28
+ - @backstage/core-components@0.12.1-next.1
29
+ - @backstage/version-bridge@1.0.3-next.0
30
+ - @backstage/core-plugin-api@1.1.1-next.1
31
+ - @backstage/types@1.0.2-next.1
32
+ - @backstage/integration@1.4.1-next.1
33
+ - @backstage/plugin-permission-react@0.4.8-next.1
34
+ - @backstage/catalog-client@1.2.0-next.1
35
+ - @backstage/catalog-model@1.1.4-next.1
36
+ - @backstage/errors@1.1.4-next.1
37
+ - @backstage/theme@0.2.16
38
+ - @backstage/plugin-catalog-common@1.0.9-next.1
39
+ - @backstage/plugin-permission-common@0.7.2-next.1
40
+
3
41
  ## 1.2.2-next.0
4
42
 
5
43
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.2.2-next.0",
3
+ "version": "1.2.2-next.2",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
@@ -191,6 +191,11 @@ export declare const EntityKindPicker: (props: EntityKindPickerProps) => JSX.Ele
191
191
  * @public
192
192
  */
193
193
  export declare interface EntityKindPickerProps {
194
+ /**
195
+ * Entity kinds to show in the dropdown; by default all kinds are fetched from the catalog and
196
+ * displayed.
197
+ */
198
+ allowedKinds?: string[];
194
199
  initialFilter?: string;
195
200
  hidden?: boolean;
196
201
  }
@@ -191,6 +191,11 @@ export declare const EntityKindPicker: (props: EntityKindPickerProps) => JSX.Ele
191
191
  * @public
192
192
  */
193
193
  export declare interface EntityKindPickerProps {
194
+ /**
195
+ * Entity kinds to show in the dropdown; by default all kinds are fetched from the catalog and
196
+ * displayed.
197
+ */
198
+ allowedKinds?: string[];
194
199
  initialFilter?: string;
195
200
  hidden?: boolean;
196
201
  }
package/dist/index.d.ts CHANGED
@@ -191,6 +191,11 @@ export declare const EntityKindPicker: (props: EntityKindPickerProps) => JSX.Ele
191
191
  * @public
192
192
  */
193
193
  export declare interface EntityKindPickerProps {
194
+ /**
195
+ * Entity kinds to show in the dropdown; by default all kinds are fetched from the catalog and
196
+ * displayed.
197
+ */
198
+ allowedKinds?: string[];
194
199
  initialFilter?: string;
195
200
  hidden?: boolean;
196
201
  }