@@ -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,
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -27,7 +27,7 @@ export {
|
||||
EntityTagsPickerFieldExtension,
|
||||
OwnerPickerFieldExtension,
|
||||
OwnedEntityPickerFieldExtension,
|
||||
OwnershipEntityRefPickerFieldExtension,
|
||||
MyGroupsPickerFieldExtension,
|
||||
RepoUrlPickerFieldExtension,
|
||||
ScaffolderPage,
|
||||
scaffolderPlugin,
|
||||
|
||||
Reference in New Issue
Block a user