afc163
6 years ago
No known key found for this signature in database
GPG Key ID: 738F973FCE5C6B48
2 changed files with
8 additions and
3 deletions
-
components/form/demo/register.md
-
components/form/style/index.less
|
@ -148,6 +148,7 @@ class RegistrationForm extends React.Component { |
|
|
</Form.Item> |
|
|
</Form.Item> |
|
|
<Form.Item |
|
|
<Form.Item |
|
|
label="Password" |
|
|
label="Password" |
|
|
|
|
|
hasFeedback |
|
|
> |
|
|
> |
|
|
{getFieldDecorator('password', { |
|
|
{getFieldDecorator('password', { |
|
|
rules: [{ |
|
|
rules: [{ |
|
@ -156,11 +157,12 @@ class RegistrationForm extends React.Component { |
|
|
validator: this.validateToNextPassword, |
|
|
validator: this.validateToNextPassword, |
|
|
}], |
|
|
}], |
|
|
})( |
|
|
})( |
|
|
<Input type="password" /> |
|
|
<Input.Password /> |
|
|
)} |
|
|
)} |
|
|
</Form.Item> |
|
|
</Form.Item> |
|
|
<Form.Item |
|
|
<Form.Item |
|
|
label="Confirm Password" |
|
|
label="Confirm Password" |
|
|
|
|
|
hasFeedback |
|
|
> |
|
|
> |
|
|
{getFieldDecorator('confirm', { |
|
|
{getFieldDecorator('confirm', { |
|
|
rules: [{ |
|
|
rules: [{ |
|
@ -169,7 +171,7 @@ class RegistrationForm extends React.Component { |
|
|
validator: this.compareToFirstPassword, |
|
|
validator: this.compareToFirstPassword, |
|
|
}], |
|
|
}], |
|
|
})( |
|
|
})( |
|
|
<Input type="password" onBlur={this.handleConfirmBlur} /> |
|
|
<Input.Password onBlur={this.handleConfirmBlur} /> |
|
|
)} |
|
|
)} |
|
|
</Form.Item> |
|
|
</Form.Item> |
|
|
<Form.Item |
|
|
<Form.Item |
|
|
|
@ -163,13 +163,16 @@ input[type='checkbox'] { |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// 表单下的输入框尺寸唯一: 大尺寸 |
|
|
|
|
|
form { |
|
|
form { |
|
|
.has-feedback { |
|
|
.has-feedback { |
|
|
.@{ant-prefix}-input { |
|
|
.@{ant-prefix}-input { |
|
|
padding-right: 24px; |
|
|
padding-right: 24px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.@{ant-prefix}-input-password-icon { |
|
|
|
|
|
margin-right: 18px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// Fix overlapping between feedback icon and <Select>'s arrow. |
|
|
// Fix overlapping between feedback icon and <Select>'s arrow. |
|
|
// https://github.com/ant-design/ant-design/issues/4431 |
|
|
// https://github.com/ant-design/ant-design/issues/4431 |
|
|
> .@{ant-prefix}-select .@{ant-prefix}-select-arrow, |
|
|
> .@{ant-prefix}-select .@{ant-prefix}-select-arrow, |
|
|