New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

better-react-textarea-autosize

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-react-textarea-autosize

textarea component for React which grows with content

4.0.9
latest
Source
npm
Version published
Maintainers
1
Created
Source

better-react-textarea-autosize

Fork of react-textarea-autosize. Includes everything from the original package, but allows to create a ref to component.

Install

npm install better-react-textarea-autosize

ref usage

import React, { Component } from 'react';
import Textarea from 'better-react-textarea-autosize';

class MyTextarea extends Component {
  componentDidMount() {
    this.field.focus();
  }

  render() {
    return (
      <Textarea
        inputRef={(node) => { this.field = node; }}
      />
    );
  }
}

Demo

https://andreypopp.github.io/react-textarea-autosize/

Keywords

autosize

FAQs

Package last updated on 27 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts