From 464125e9b1ba37d1e254c975376409d5e39ae19e Mon Sep 17 00:00:00 2001 From: Peter Macdonald Date: Tue, 30 May 2023 18:56:20 +0200 Subject: [PATCH] api-report and changeset Signed-off-by: Peter Macdonald --- .changeset/late-bags-cover.md | 5 +++++ plugins/scaffolder/api-report.md | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .changeset/late-bags-cover.md diff --git a/.changeset/late-bags-cover.md b/.changeset/late-bags-cover.md new file mode 100644 index 0000000000..521a16f2f2 --- /dev/null +++ b/.changeset/late-bags-cover.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-scaffolder': minor +--- + +Added `OwnershipEntityRefPicker` field extension that will display a dropdown of groups a user is part of. diff --git a/plugins/scaffolder/api-report.md b/plugins/scaffolder/api-report.md index e50395be05..0785ff0982 100644 --- a/plugins/scaffolder/api-report.md +++ b/plugins/scaffolder/api-report.md @@ -292,6 +292,27 @@ export const OwnerPickerFieldSchema: FieldSchema< // @public export type OwnerPickerUiOptions = typeof OwnerPickerFieldSchema.uiOptionsType; +// @public +export const OwnershipEntityRefPickerFieldExtension: FieldExtensionComponent_2< + string, + { + title?: string | undefined; + description?: string | undefined; + } +>; + +// Warning: (ae-missing-release-tag) "OwnershipEntityRefPickerSchema" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export const OwnershipEntityRefPickerSchema: CustomFieldExtensionSchema_2; + +// Warning: (ae-forgotten-export) The symbol "OwnershipEntityRefPickerFieldSchema" needs to be exported by the entry point index.d.ts +// Warning: (ae-missing-release-tag) "OwnershipEntityRefPickerUiOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export type OwnershipEntityRefPickerUiOptions = + typeof OwnershipEntityRefPickerFieldSchema.uiOptionsType; + // @public export const repoPickerValidation: ( value: string,