chore: fixing api-reprots

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-06-13 17:08:00 +02:00
parent 5d695c3418
commit 65bff8df26
3 changed files with 27 additions and 28 deletions
+25 -25
View File
@@ -207,6 +207,31 @@ export function makeFieldSchemaFromZod<
: never
>;
// @public
export const MyGroupsPickerFieldExtension: FieldExtensionComponent_2<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;
// @public
export const MyGroupsPickerFieldSchema: FieldSchema<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;
// @public
export const MyGroupsPickerSchema: CustomFieldExtensionSchema_2;
// @public
export type MyGroupsPickerUiOptions =
typeof MyGroupsPickerFieldSchema.uiOptionsType;
// @public
export const OwnedEntityPickerFieldExtension: FieldExtensionComponent_2<
string,
@@ -292,31 +317,6 @@ export const OwnerPickerFieldSchema: FieldSchema<
// @public
export type OwnerPickerUiOptions = typeof OwnerPickerFieldSchema.uiOptionsType;
// @public
export const OwnershipEntityRefPickerFieldExtension: FieldExtensionComponent_2<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;
// @public
export const OwnershipEntityRefPickerFieldSchema: FieldSchema<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;
// @public
export const OwnershipEntityRefPickerSchema: CustomFieldExtensionSchema_2;
// @public
export type OwnershipEntityRefPickerUiOptions =
typeof OwnershipEntityRefPickerFieldSchema.uiOptionsType;
// @public
export const repoPickerValidation: (
value: string,
+1 -2
View File
@@ -43,7 +43,6 @@ import {
MyGroupsPicker,
MyGroupsPickerSchema,
} from '../components/fields/MyGroupsPicker/MyGroupsPicker';
import { MyGroupsPickerFieldSchema } from '../components';
export const DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS = [
{
@@ -81,6 +80,6 @@ export const DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS = [
{
component: MyGroupsPicker,
name: 'MyGroupsPicker',
schema: MyGroupsPickerFieldSchema,
schema: MyGroupsPickerSchema,
},
];
+1 -1
View File
@@ -27,7 +27,7 @@ export {
EntityTagsPickerFieldExtension,
OwnerPickerFieldExtension,
OwnedEntityPickerFieldExtension,
OwnershipEntityRefPickerFieldExtension,
MyGroupsPickerFieldExtension,
RepoUrlPickerFieldExtension,
ScaffolderPage,
scaffolderPlugin,