├── .nvmrc ├── .npmignore ├── .babelrc ├── .gitignore ├── webpack.config.js ├── src ├── index.js ├── RIEToggle.js ├── RIETextArea.js ├── RIESelect.js ├── RIENumber.js ├── RIEBase.js ├── RIEStatefulBase.js └── RIETags.js ├── index.html ├── LICENSE ├── package.json ├── demo ├── style.css └── demo.jsx ├── CHANGELOG.md ├── README.md └── yarn.lock /.nvmrc: -------------------------------------------------------------------------------- 1 | v5.6.0 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | demo -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react", "stage-1"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | .idea 4 | *.log 5 | .DS_Store -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | module: { 3 | loaders: [ 4 | { 5 | test: /\.jsx?$/, 6 | exclude: /(node_modules)/, 7 | loader: 'babel' 8 | } 9 | ] 10 | }, 11 | externals: { 12 | react: 'React', 13 | 'react-dom': 'ReactDOM' 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import RIEToggle from './RIEToggle'; 2 | import RIEStatefulBase from './RIEStatefulBase'; 3 | import RIETextArea from './RIETextArea' 4 | import RIENumber from './RIENumber'; 5 | import RIETags from './RIETags' 6 | import RIESelect from './RIESelect' 7 | 8 | class RIEInput extends RIEStatefulBase { 9 | 10 | } 11 | 12 | export {RIEToggle, RIEInput, RIETextArea, RIENumber, RIETags, RIESelect}; 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Default:
169 |