@beisen-phoenix/select
Version:
## 概述
49 lines (48 loc) • 1.57 kB
TypeScript
import { SelectValue } from './PropsInterface';
import { Item } from './PropsInterface';
export declare function getHeightStyle(size?: string): string;
export declare function getPaddingStyle(size?: string): string;
export interface styledCommonProps extends SelectValue {
disabled?: boolean;
isMultiSelect?: boolean;
size?: any;
isSearch?: boolean;
isFocus?: boolean;
visibleTxt?: boolean;
multiValueLength?: number;
isShowDeleteIcon?: boolean;
isActive?: boolean;
}
export interface PlaceHolderProps extends styledCommonProps {
isShowPlaceHolder?: boolean;
}
export interface InputProps extends styledCommonProps {
inputWidth?: number;
propsValue?: string | Array<Item>;
}
export interface StyledProps extends styledCommonProps {
inputValue?: string;
error?: boolean;
isSingleLine?: boolean;
}
export interface SelectIconWrapperProps {
disabled?: boolean;
}
export interface ChosenProps {
itemDisabled?: boolean;
selectDisabled?: boolean;
}
export declare const PlaceHolder: any;
export declare const Chosen: any;
export declare const IconWrapper: any;
export declare const InputWrapper: any;
export declare const StyledInput: any;
export declare const SelectIconWrapper: any;
export declare const StyledUl: any;
export declare const Wrapper: any;
export declare const StyledSpan: any;
export declare const StyledWrapper: any;
export declare const StyledHiddenSpan: any;
export declare const StyledDeleteIcon: any;
export declare const StyledTagSpan: any;
export declare const TipsSapn: any;