Skip to content

Commit

Permalink
docs(sdds-serv): api report regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
denivladislav committed Jun 25, 2024
1 parent 03507e1 commit 40582f5
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion packages/sdds-serv/api/sdds-serv.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,37 @@ negative: string;
disabled: {
true: string;
};
}> & TextareaHTMLAttributes<HTMLTextAreaElement> & TextAreaPropsExtends & RefAttributes<HTMLTextAreaElement>>;
}> & ((Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "rows" | "cols"> & TextAreaPropsExtends & {
autoResize?: boolean | undefined;
maxAuto?: number | undefined;
minAuto?: number | undefined;
} & {
height?: undefined;
width?: undefined;
} & {
rows?: undefined;
cols?: undefined;
} & RefAttributes<HTMLTextAreaElement>) | (Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "rows" | "cols"> & TextAreaPropsExtends & {
height?: string | number | undefined;
width?: string | number | undefined;
} & {
autoResize?: undefined;
maxAuto?: undefined;
minAuto?: undefined;
} & {
rows?: undefined;
cols?: undefined;
} & RefAttributes<HTMLTextAreaElement>) | (Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "rows" | "cols"> & TextAreaPropsExtends & {
rows?: number | undefined;
cols?: number | undefined;
} & {
autoResize?: undefined;
maxAuto?: undefined;
minAuto?: undefined;
} & {
height?: undefined;
width?: undefined;
} & RefAttributes<HTMLTextAreaElement>))>;

// @public
export const TextField: FunctionComponent<PropsType< {
Expand Down

0 comments on commit 40582f5

Please sign in to comment.