You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
import classNames from 'classnames';
|
|
import { ValidateStatus } from '../form/FormItem';
|
|
import type { DirectionType } from '../config-provider';
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
import type { ClearableInputProps } from './ClearableLabeledInput';
|
|
import type { InputProps } from './Input';
|
|
import { getStatusClassNames } from '../_util/statusUtils';
|
|
|
|
export function getInputClassName(
|
|
prefixCls: string,
|
|
bordered: boolean,
|
|
size?: SizeType,
|
|
disabled?: boolean,
|
|
direction?: DirectionType,
|
|
status?: ValidateStatus,
|
|
hasFeedback?: boolean,
|
|
) {
|
|
return classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-disabled`]: disabled,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-borderless`]: !bordered,
|
|
},
|
|
getStatusClassNames(prefixCls, status, hasFeedback),
|
|
);
|
|
}
|
|
|
|
export function hasPrefixSuffix(props: InputProps | ClearableInputProps) {
|
|
return !!(props.prefix || props.suffix || props.allowClear);
|
|
}
|
|
|