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.
43 lines
1.6 KiB
43 lines
1.6 KiB
import * as React from 'react';
|
|
import { DirectionType } from '../config-provider';
|
|
import { SizeType } from '../config-provider/SizeContext';
|
|
declare const ClearableInputType: ["text", "input"];
|
|
/** This basic props required for input and textarea. */
|
|
interface BasicProps {
|
|
prefixCls: string;
|
|
inputType: typeof ClearableInputType[number];
|
|
value?: any;
|
|
allowClear?: boolean;
|
|
element: React.ReactElement;
|
|
handleReset: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
disabled?: boolean;
|
|
direction?: DirectionType;
|
|
focused?: boolean;
|
|
readOnly?: boolean;
|
|
bordered: boolean;
|
|
hidden?: boolean;
|
|
}
|
|
/** This props only for input. */
|
|
export interface ClearableInputProps extends BasicProps {
|
|
size?: SizeType;
|
|
suffix?: React.ReactNode;
|
|
prefix?: React.ReactNode;
|
|
addonBefore?: React.ReactNode;
|
|
addonAfter?: React.ReactNode;
|
|
triggerFocus?: () => void;
|
|
}
|
|
declare class ClearableLabeledInput extends React.Component<ClearableInputProps> {
|
|
/** @private Do Not use out of this class. We do not promise this is always keep. */
|
|
private containerRef;
|
|
onInputMouseUp: React.MouseEventHandler;
|
|
renderClearIcon(prefixCls: string): JSX.Element | null;
|
|
renderSuffix(prefixCls: string): JSX.Element | null;
|
|
renderLabeledIcon(prefixCls: string, element: React.ReactElement): JSX.Element;
|
|
renderInputWithLabel(prefixCls: string, labeledElement: React.ReactElement): JSX.Element;
|
|
renderTextAreaWithClearIcon(prefixCls: string, element: React.ReactElement): JSX.Element;
|
|
render(): JSX.Element;
|
|
}
|
|
export default ClearableLabeledInput;
|