api-report fixed?

Signed-off-by: Peter Macdonald <macdonald.peter90@gmail.com>
This commit is contained in:
Peter Macdonald
2023-05-31 08:44:07 +02:00
committed by blam
parent 464125e9b1
commit 0278da3d5c
4 changed files with 34 additions and 8 deletions
+11 -7
View File
@@ -301,15 +301,19 @@ export const OwnershipEntityRefPickerFieldExtension: FieldExtensionComponent_2<
}
>;
// Warning: (ae-missing-release-tag) "OwnershipEntityRefPickerSchema" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
// @public
export const OwnershipEntityRefPickerFieldSchema: FieldSchema<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;
// @public
export const OwnershipEntityRefPickerSchema: CustomFieldExtensionSchema_2;
// Warning: (ae-forgotten-export) The symbol "OwnershipEntityRefPickerFieldSchema" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "OwnershipEntityRefPickerUiOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
// @public
export type OwnershipEntityRefPickerUiOptions =
typeof OwnershipEntityRefPickerFieldSchema.uiOptionsType;
@@ -17,4 +17,5 @@
export {
OwnershipEntityRefPickerSchema,
type OwnershipEntityRefPickerUiOptions,
OwnershipEntityRefPickerFieldSchema,
} from './schema';
@@ -17,6 +17,11 @@
import { z } from 'zod';
import { makeFieldSchemaFromZod } from '../utils';
/**
* Field schema for the OwnershipEntityRefPicker.
* @public
*/
export const OwnershipEntityRefPickerFieldSchema = makeFieldSchemaFromZod(
z.string(),
z.object({
@@ -28,9 +33,25 @@ export const OwnershipEntityRefPickerFieldSchema = makeFieldSchemaFromZod(
}),
);
/**
* UI options for the OwnershipEntityRefPicker.
* @public
*/
export type OwnershipEntityRefPickerUiOptions =
typeof OwnershipEntityRefPickerFieldSchema.uiOptionsType;
/**
* Props for the OwnershipEntityRefPicker.
* @public
*/
export type OwnershipEntityRefPickerProps =
typeof OwnershipEntityRefPickerFieldSchema.type;
/**
* Schema for the OwnershipEntityRefPicker.
* @public
*/
export const OwnershipEntityRefPickerSchema =
OwnershipEntityRefPickerFieldSchema.schema;
+1 -1
View File
@@ -163,7 +163,7 @@ export const OwnerPickerFieldExtension = scaffolderPlugin.provide(
);
/**
* A field extension for picking users and groups out of the Catalog.
* A field extension for picking groups a user belongs to out of the catalog.
*
* @public
*/