antd-mobile
Version:
基于 React 的移动设计规范实现
42 lines (41 loc) • 1.23 kB
TypeScript
import * as React from 'react';
import TextareaItemProps from './TextAreaItemPropsType';
export interface TextareaItemState {
focus: boolean;
}
export default class TextareaItem extends React.Component<TextareaItemProps, TextareaItemState> {
static propTypes: {
title: React.Requireable<any>;
labelNumber: React.Requireable<any>;
};
static defaultProps: {
prefixCls: string;
prefixListCls: string;
title: string;
autoHeight: boolean;
editable: boolean;
disabled: boolean;
name: string;
defaultValue: string;
placeholder: string;
clear: boolean;
rows: number;
onChange: () => void;
onBlur: () => void;
onFocus: () => void;
onErrorClick: () => void;
error: boolean;
labelNumber: number;
};
initialTextHeight: number;
constructor(props: any);
componentDidMount(): void;
componentDidUpdate(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
onChange: (e: any) => void;
onBlur: (e: any) => void;
onFocus: (e: any) => void;
onErrorClick: () => void;
clearInput: () => void;
render(): JSX.Element;
}