@@ -1,5 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-react': major
|
||||
'@backstage/plugin-scaffolder-react': minor
|
||||
---
|
||||
|
||||
Fixed typescript casting bug for useTemplateParameterSchema hook
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -289,7 +289,7 @@ export const useFormDataFromQuery: (
|
||||
|
||||
// @alpha (undocumented)
|
||||
export const useTemplateParameterSchema: (templateRef: string) => {
|
||||
manifest: TemplateParameterSchema;
|
||||
manifest: TemplateParameterSchema | undefined;
|
||||
loading: boolean;
|
||||
error: Error | undefined;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user