Fix report

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2025-01-13 12:54:35 +00:00
parent 7eead323ae
commit 57610caf1c
2 changed files with 22 additions and 2 deletions
+21 -2
View File
@@ -324,13 +324,32 @@ export interface InlineProps extends SpaceProps {
style?: React.CSSProperties;
}
// Warning: (ae-forgotten-export) The symbol "InputProps" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export const Input: React_2.ForwardRefExoticComponent<
InputProps & React_2.RefAttributes<HTMLDivElement>
>;
// @public (undocumented)
export interface InputProps
extends React.ComponentPropsWithoutRef<typeof Field.Root> {
// (undocumented)
description?: string;
// (undocumented)
errorForceShow?: boolean;
// (undocumented)
errorMatch?: Field.Error.Props['match'];
// (undocumented)
errorMessage?: string;
// (undocumented)
label?: string;
// (undocumented)
placeholder?: string;
// (undocumented)
required?: boolean;
// (undocumented)
size?: 'sm' | 'md';
}
// @public (undocumented)
export type JustifyContent =
| 'stretch'
@@ -15,3 +15,4 @@
*/
export { Input } from './Input';
export type { InputProps } from './types';