chore: Fix changeset spelling and generate api reports

Signed-off-by: Mathias Bronner <mathiasbronner@gmail.com>
This commit is contained in:
Mathias Bronner
2022-11-17 16:31:43 +01:00
committed by Mathias Bronner
parent 42469cf14e
commit 4cb5066828
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-org-react': patch
---
Bug fixes and adding the possibility to add a default value for the `GroupListPicker`. Fixes: Vertical size jump on text entry, left align for text, selecting a value closes the popup, auto focus on the popup when opening
+1
View File
@@ -12,6 +12,7 @@ export const GroupListPicker: (props: GroupListPickerProps) => JSX.Element;
// @public
export type GroupListPickerProps = {
defaultValue?: string;
placeholder?: string;
groupTypes?: Array<string>;
onChange: (value: GroupEntity | undefined) => void;