Skip to content

Commit

Permalink
ver. 0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
光弘 committed Nov 15, 2017
1 parent 4e26648 commit ec7acd1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# history

## 0.1.15

* `CHANGED` fit React@15 for addons

## 0.1.14

* `CHANGED` fit React@15
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxcore-input-form-field",
"version": "0.1.15",
"version": "0.1.16",
"description": "uxcore-input-form-field component for uxcore.",
"repository": "https://github.com/uxcore/uxcore-input-form-field.git",
"author": "eternalsky",
Expand Down Expand Up @@ -42,7 +42,7 @@
"react-addons-test-utils": "15.x",
"react-dom": "15.x",
"react-test-renderer": "15.x",
"uxcore-form": "~1.3.11",
"uxcore-form": "*",
"uxcore-kuma": "*",
"uxcore-tools": "0.2.x",
"uxcore-validator": "~0.2.0"
Expand Down
7 changes: 4 additions & 3 deletions src/addons/FormCount.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import classnames from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';

const FormCount = props => (
<div
Expand All @@ -24,9 +25,9 @@ FormCount.defaultProps = {

/* eslint-disable react/require-default-props */
FormCount.propTypes = {
prefixCls: React.PropTypes.string,
length: React.PropTypes.number,
total: React.PropTypes.number,
prefixCls: PropTypes.string,
length: PropTypes.number,
total: PropTypes.number,
};
/* eslint-enable react/require-default-props */

Expand Down
7 changes: 4 additions & 3 deletions src/addons/LeftAddon.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import classnames from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';

const LeftAddon = props => (
<div
Expand All @@ -17,9 +18,9 @@ LeftAddon.defaultProps = {};

/* eslint-disable react/require-default-props */
LeftAddon.propTypes = {
focus: React.PropTypes.bool,
hover: React.PropTypes.bool,
children: React.PropTypes.any,
focus: PropTypes.bool,
hover: PropTypes.bool,
children: PropTypes.any,
};
/* eslint-enable react/require-default-props */

Expand Down
3 changes: 2 additions & 1 deletion src/addons/RightAddon.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import PropTypes from 'prop-types';

const RightAddon = props => (
<div className="kuma-uxform-right-icon ">
Expand All @@ -10,7 +11,7 @@ RightAddon.defaultProps = {};

/* eslint-disable react/require-default-props */
RightAddon.propTypes = {
children: React.PropTypes.any,
children: PropTypes.any,
};
/* eslint-enable react/require-default-props */

Expand Down

0 comments on commit ec7acd1

Please sign in to comment.