Pretty Textarea react component used in tinper-next
npm install xst-textareajs
import Textarea from 'xst-textarea';
import { render } from 'react-dom';
render(, mountNode);
`
API
| Property | Type | Default | Description |
| ----------------- | --------------------------- | ------------ | ---------------------------------------------------------------------------------------------- |
| prefixCls | string | xst-textarea | |
| className | string | '' | additional class name of textarea |
| style | React.CSSProperties | - | style properties of textarea |
| autoSize | boolean \| object | - | Height autosize feature, can be set to true\|false or an object { minRows: 2, maxRows: 6 } |
| maxlength | Number | - | 用户最多可以输入的字符个数 |
| allowInputOverMax | boolean | false | 超出 maxlength 后是否允许继续输入 |
| onPressEnter | function(e) | - | The callback function that is triggered when Enter key is pressed |
| onResize | function({ width, height }) | - | The callback function that is triggered when resize |
Development
`
npm install
npm start
``