Updated API reports

Signed-off-by: ashinsabu <ashin.sabu3@gmail.com>
This commit is contained in:
ashinsabu
2023-06-13 02:33:43 +05:30
parent a452bda74d
commit 2214d09540
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
---
'@backstage/plugin-scaffolder-react': major
'@backstage/plugin-scaffolder-react': minor
---
Fixed typescript casting bug for useTemplateParameterSchema hook
+1 -1
View File
@@ -44,7 +44,7 @@ export type ClockConfig = {
export const ComponentAccordion: (props: {
title: string;
expanded?: boolean | undefined;
Content: () => JSX.Element;
Content: () => JSX.Element /** @public */;
Actions?: (() => JSX.Element) | undefined;
Settings?: (() => JSX.Element) | undefined;
ContextProvider?: ((props: any) => JSX.Element) | undefined;
+1 -1
View File
@@ -289,7 +289,7 @@ export const useFormDataFromQuery: (
// @alpha (undocumented)
export const useTemplateParameterSchema: (templateRef: string) => {
manifest: TemplateParameterSchema;
manifest: TemplateParameterSchema | undefined;
loading: boolean;
error: Error | undefined;
};