scaffolder-react: refert FormProps back to alpha
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -121,7 +121,7 @@ export type FieldExtensionOptions<
|
||||
schema?: CustomFieldExtensionSchema;
|
||||
};
|
||||
|
||||
// @alpha
|
||||
// @public
|
||||
export type FormProps = Pick<
|
||||
FormProps_2,
|
||||
'transformErrors' | 'noHtml5Validate'
|
||||
|
||||
@@ -16,10 +16,14 @@
|
||||
|
||||
import type { FormProps as SchemaFormProps } from '@rjsf/core-v5';
|
||||
|
||||
// TODO(Rugvip): The FormProps type is actually supposed to be alpha, but since we want to
|
||||
// refer to it from @backstage/plugin-scaffolder, it needs to be public for now.
|
||||
// Once we support internal alpha re-exports this should be switched to an alpha export.
|
||||
|
||||
/**
|
||||
* Any `@rjsf/core` form properties that are publicly exposed to the `NextScaffolderpage`
|
||||
*
|
||||
* @alpha
|
||||
* @public
|
||||
*/
|
||||
export type FormProps = Pick<
|
||||
SchemaFormProps,
|
||||
|
||||
Reference in New Issue
Block a user