diff --git a/packages/canon/report.api.md b/packages/canon/report.api.md index 8f5e693271..9f1b114a40 100644 --- a/packages/canon/report.api.md +++ b/packages/canon/report.api.md @@ -182,8 +182,6 @@ export interface ContainerProps { // @public (undocumented) export type Display = 'none' | 'flex' | 'block' | 'inline'; -// Warning: (ae-missing-release-tag) "Field" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) -// // @public (undocumented) export const Field: { Root: React_2.ForwardRefExoticComponent< @@ -207,10 +205,11 @@ export const Field: { >; Validity: ({ children, + className, ...props - }: React_2.ComponentPropsWithoutRef< - typeof Field_2.Validity - >) => React_2.JSX.Element; + }: Field_2.Validity.Props & { + className?: string | undefined; + }) => React_2.JSX.Element; }; // @public (undocumented) diff --git a/packages/canon/src/components/Field/Field.tsx b/packages/canon/src/components/Field/Field.tsx index 013a3ef5b5..b0c86b2c85 100644 --- a/packages/canon/src/components/Field/Field.tsx +++ b/packages/canon/src/components/Field/Field.tsx @@ -82,6 +82,7 @@ const FieldValidity = ({ ); +/** @public */ export const Field = { Root: FieldRoot, Label: FieldLabel,