@rc-component/textarea
Version:
Pretty Textarea react component used in used in ant.design
31 lines (30 loc) • 1.19 kB
TypeScript
import * as React from 'react';
import type { ResizableTextAreaRef } from './interface';
declare const ResizableTextArea: React.ForwardRefExoticComponent<Omit<import("./interface").HTMLTextareaProps, "onResize" | "value"> & {
value?: string | number | bigint | readonly string[];
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
autoSize?: boolean | import("./interface").AutoSizeType;
onPressEnter?: React.KeyboardEventHandler<HTMLTextAreaElement>;
onResize?: (size: {
width: number;
height: number;
}) => void;
classNames?: {
affixWrapper?: string;
prefix?: string;
suffix?: string;
groupWrapper?: string;
wrapper?: string;
variant?: string;
} & {
textarea?: string;
count?: string;
};
styles?: {
textarea?: React.CSSProperties;
count?: React.CSSProperties;
};
} & Pick<import("@rc-component/input/lib/interface").BaseInputProps, "allowClear" | "suffix"> & Pick<import("@rc-component/input").InputProps, "showCount" | "count" | "onClear"> & React.RefAttributes<ResizableTextAreaRef>>;
export default ResizableTextArea;