react-autosize-textarea
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -84,5 +84,7 @@ 'use strict'; | ||
var children = _props.children; | ||
var onResize = _props.onResize; | ||
var props = _objectWithoutProperties(_props, ['children']); | ||
var props = _objectWithoutProperties(_props, ['children', 'onResize']); | ||
// eslint-disable-line no-unused-vars | ||
return _react2['default'].createElement( | ||
@@ -89,0 +91,0 @@ 'textarea', |
{ | ||
"name": "react-autosize-textarea", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "replacement for built-in textarea which auto resizes itself", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -53,3 +53,3 @@ import React from 'react'; | ||
render() { | ||
const { children, ...props } = this.props; | ||
const { children, onResize, ...props } = this.props; // eslint-disable-line no-unused-vars | ||
return ( | ||
@@ -56,0 +56,0 @@ <textarea {...props} ref='textarea'> |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
153576
796