ReactInlineEdit icon indicating copy to clipboard operation
ReactInlineEdit copied to clipboard

Simple React component for in-place text editing and validation

Results 20 ReactInlineEdit issues
Sort by recently updated
recently updated
newest added

Addresses issue #31 and #15 I updated README & rebuilt files, let me know if there's anything else you're looking for.

Because `createElement` accepts both `string` and `function`, the propType for `staticElement` can be both.

This package breaks in newer versions of react because it expect `PropTypes` on the `React` object, this change allows it to use a peer dependency of `prop-type` directly

Support for React 16. Proptype is deprecated I think we need to add prop-types library instead

Would like to disable spellcheck as shown below: ![screen shot 2017-10-23 at 5 25 38 pm](https://user-images.githubusercontent.com/12162433/31914048-3958b2f8-b817-11e7-9acd-5d589c845610.png) As [this post](https://stackoverflow.com/questions/254712/disable-spell-checking-on-html-textfields) shows, there is no way to turn off spellcheck via CSS....

Inline editing via a textarea and would have enter/return add a new line vs change editing state. Is there way to do that?

With React 15.5, importing PropTypes from React is deprecated in favour of importing from the new 'prop-types' package. https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html Can ReactInlineEdit be updated?

More of a feature request than anything, and I am currently working on it, but I would like the ability to specify a custom element using the "editingElement" prop. I...