Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved LinkedInput from addons to packages. #6127

Merged
merged 1 commit into from
Feb 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule LinkedInput
*/

'use strict';

var React = require('React');
var LinkedValueUtils = require('LinkedValueUtils');
var React = require('react');
var LinkedValueUtils = require('react/lib/LinkedValueUtils');

class LinkedInput extends React.Component {
render() {
Expand All @@ -21,8 +19,9 @@ class LinkedInput extends React.Component {
newProps.checked = LinkedValueUtils.getChecked(this.props);
delete newProps.valueLink;
delete newProps.checkedLink;
return <input {...newProps} />;
return React.createElement('input', newProps);
}
}

module.exports = LinkedInput;

11 changes: 11 additions & 0 deletions packages/react-linked-input/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
This component supports the ReactLink API (valueLink, etc) for input components. Support for ReactLink on DOM elements will be removed from React. This component may be used as a migration plan (so your code doesn't break in the next version of React) or may be used if you just like the ReactLink data binding semantics. However, this component is not maintained, so use at your own risk.


```
var React = require('react');
var ReactDOM = require('react-dom');
var LinkedInput = require('react-linked-input');

var link = {value: 'boo', requestChange: function() {}};
React.render(<LinkedInput valueLink={link} />, container);
```
25 changes: 25 additions & 0 deletions packages/react-linked-input/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "react-linked-input",
"version": "1.0.0",
"description": "LinkedInput supports the ReactLink semantics",
"main": "LinkedInput.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react.git"
},
"keywords": [
"react",
"linkedinput",
"input",
"linked",
"reactlink"
],
"author": "",
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "^0.14.7"
}
}