diff --git a/packages/canon/report.api.md b/packages/canon/report.api.md index 74c014fb12..c5b0281e3e 100644 --- a/packages/canon/report.api.md +++ b/packages/canon/report.api.md @@ -1030,20 +1030,6 @@ export const TextField: React_2.ForwardRefExoticComponent< TextFieldProps & React_2.RefAttributes >; -// @public (undocumented) -export type TextFieldOwnProps = GetPropDefTypes; - -// @public (undocumented) -export const textFieldPropDefs: { - size: { - type: 'enum'; - values: ('small' | 'medium')[]; - className: string; - default: 'medium'; - responsive: true; - }; -}; - // @public (undocumented) export interface TextFieldProps extends Omit, 'size'> { @@ -1051,7 +1037,7 @@ export interface TextFieldProps description?: string; label?: string; name: string; - size?: TextFieldOwnProps['size']; + size?: 'small' | 'medium' | Partial>; } // @public (undocumented)