fix: input classname in affix wrapper (#34474)

This commit is contained in:
MadCcc 2022-03-14 15:05:24 +08:00 committed by GitHub
parent ac130c63ca
commit 14e719295e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 22 deletions

View File

@ -13790,7 +13790,7 @@ exports[`ConfigProvider components Input configProvider componentSize large 1`]
>
<input
action="click"
class="config-input"
class="config-input config-input-lg"
type="password"
value=""
/>

View File

@ -223,7 +223,7 @@ const Input = forwardRef<InputRef, InputProps>((props, ref) => {
addonAfter={addonAfter && <NoFormStatus>{addonAfter}</NoFormStatus>}
addonBefore={addonBefore && <NoFormStatus>{addonBefore}</NoFormStatus>}
inputClassName={classNames(
!withPrefixSuffix && {
{
[`${prefixCls}-sm`]: mergedSize === 'small',
[`${prefixCls}-lg`]: mergedSize === 'large',
[`${prefixCls}-rtl`]: direction === 'rtl',

View File

@ -6,7 +6,7 @@ exports[`Input.Password rtl render component should be rendered correctly in RTL
>
<input
action="click"
class="ant-input"
class="ant-input ant-input-rtl"
type="password"
value=""
/>
@ -163,7 +163,7 @@ exports[`Input.Password should support size 1`] = `
>
<input
action="click"
class="ant-input"
class="ant-input ant-input-lg"
type="password"
value=""
/>

View File

@ -5009,7 +5009,7 @@ exports[`renders ./components/input/demo/borderless-debug.md extend context corr
class="ant-input-affix-wrapper ant-input-affix-wrapper-borderless"
>
<input
class="ant-input"
class="ant-input ant-input-borderless"
placeholder="Unbordered"
type="text"
value=""
@ -5053,7 +5053,7 @@ exports[`renders ./components/input/demo/borderless-debug.md extend context corr
</span>
<input
class="ant-input"
class="ant-input ant-input-borderless"
type="text"
value=""
/>
@ -5072,7 +5072,7 @@ exports[`renders ./components/input/demo/borderless-debug.md extend context corr
</span>
<input
class="ant-input ant-input-disabled"
class="ant-input ant-input-disabled ant-input-borderless"
disabled=""
type="text"
value=""
@ -9161,7 +9161,7 @@ exports[`renders ./components/input/demo/search-input.md extend context correctl
class="ant-input-affix-wrapper ant-input-affix-wrapper-lg"
>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="input search text"
type="text"
value=""
@ -9224,7 +9224,7 @@ exports[`renders ./components/input/demo/search-input.md extend context correctl
class="ant-input-affix-wrapper ant-input-affix-wrapper-lg"
>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="input search text"
type="text"
value=""
@ -9485,7 +9485,7 @@ Array [
</span>
</span>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="large size"
type="text"
value=""
@ -9555,7 +9555,7 @@ Array [
</span>
</span>
<input
class="ant-input"
class="ant-input ant-input-sm"
placeholder="small size"
type="text"
value=""

View File

@ -1226,7 +1226,7 @@ exports[`renders ./components/input/demo/borderless-debug.md correctly 1`] = `
class="ant-input-affix-wrapper ant-input-affix-wrapper-borderless"
>
<input
class="ant-input"
class="ant-input ant-input-borderless"
placeholder="Unbordered"
type="text"
value=""
@ -1270,7 +1270,7 @@ exports[`renders ./components/input/demo/borderless-debug.md correctly 1`] = `
</span>
<input
class="ant-input"
class="ant-input ant-input-borderless"
type="text"
value=""
/>
@ -1289,7 +1289,7 @@ exports[`renders ./components/input/demo/borderless-debug.md correctly 1`] = `
</span>
<input
class="ant-input ant-input-disabled"
class="ant-input ant-input-disabled ant-input-borderless"
disabled=""
type="text"
value=""
@ -2935,7 +2935,7 @@ exports[`renders ./components/input/demo/search-input.md correctly 1`] = `
class="ant-input-affix-wrapper ant-input-affix-wrapper-lg"
>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="input search text"
type="text"
value=""
@ -2998,7 +2998,7 @@ exports[`renders ./components/input/demo/search-input.md correctly 1`] = `
class="ant-input-affix-wrapper ant-input-affix-wrapper-lg"
>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="input search text"
type="text"
value=""
@ -3259,7 +3259,7 @@ Array [
</span>
</span>
<input
class="ant-input"
class="ant-input ant-input-lg"
placeholder="large size"
type="text"
value=""
@ -3329,7 +3329,7 @@ Array [
</span>
</span>
<input
class="ant-input"
class="ant-input ant-input-sm"
placeholder="small size"
type="text"
value=""

View File

@ -7,10 +7,6 @@
.input-lg() {
padding: @input-padding-vertical-lg @input-padding-horizontal-lg;
font-size: @font-size-lg;
input {
font-size: @font-size-lg;
}
}
.input-sm() {