Skip to content

fix(*): fix prop types #40

Merged
merged 2 commits into from
May 24, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

Large diffs are not rendered by default.

40 changes: 0 additions & 40 deletions arui-demo/styleguide/build/bundle.39de39a0.js

This file was deleted.

40 changes: 40 additions & 0 deletions arui-demo/styleguide/build/bundle.f86e8419.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion arui-demo/styleguide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="build/bundle.39de39a0.js"></script></body>
<script type="text/javascript" src="build/bundle.f86e8419.js"></script></body>
</html>
1 change: 1 addition & 0 deletions src/card-input/card-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import performance from '../performance';
@performance()
class CardInput extends React.Component {
static propTypes = {
...Input.propTypes,
/** Подсказка в текстовом поле */
placeholder: Type.string
};
Expand Down
3 changes: 3 additions & 0 deletions src/email-input/email-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ import performance from '../performance';
@cn('email-input', Input)
@performance()
class EmailInput extends React.Component {
static propTypes = {
...Input.propTypes
};
/**
* @type {Input}
*/
Expand Down
1 change: 1 addition & 0 deletions src/money-input/money-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ function splitInteger(str) {
@performance()
class MoneyInput extends React.Component {
static propTypes = {
...Input.propTypes,
/** Максимально допустимая длина значения до запятой */
integerLength: Type.number,
/** Максимально допустимая длина значения после запятой */
Expand Down
1 change: 1 addition & 0 deletions src/phone-input/phone-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import performance from '../performance';
@performance()
class PhoneInput extends React.Component {
static propTypes = {
...Input.propTypes,
/** Подсказка в текстовом поле */
placeholder: Type.string
};
Expand Down