diff --git a/packages/canon/report.api.md b/packages/canon/report.api.md index 765a77148f..a1dc9f591a 100644 --- a/packages/canon/report.api.md +++ b/packages/canon/report.api.md @@ -744,6 +744,7 @@ export type IconNames = | 'chevron-left' | 'chevron-right' | 'chevron-up' + | 'close' | 'cloud' | 'code' | 'discord' @@ -759,6 +760,7 @@ export type IconNames = | 'heart' | 'moon' | 'plus' + | 'search' | 'sidebar-fold' | 'sidebar-unfold' | 'sparkling' @@ -1219,7 +1221,9 @@ export interface TextFieldProps description?: string; error?: string | null; label?: string; + leftElementProps?: React.ComponentPropsWithoutRef<'div'>; name: string; + rightElementProps?: React.ComponentPropsWithoutRef<'div'>; size?: 'small' | 'medium' | Partial>; }