UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

83 lines (82 loc) 4.13 kB
import * as React from 'react'; import type { BaseSelectRef, SelectProps as RcSelectProps } from '@rc-component/select'; import { OptGroup, Option } from '@rc-component/select'; import type { OptionProps } from '@rc-component/select/lib/Option'; import type { BaseOptionType, DefaultOptionType } from '@rc-component/select/lib/Select'; import type { SemanticClassNames, SemanticClassNamesType, SemanticStyles, SemanticStylesType } from '../_util/hooks'; import type { SelectCommonPlacement } from '../_util/motion'; import type { InputStatus } from '../_util/statusUtils'; import type { Variant } from '../config-provider'; import type { SizeType } from '../config-provider/SizeContext'; type RawValue = string | number; export type { BaseOptionType, DefaultOptionType, OptionProps, BaseSelectRef as RefSelectProps }; export interface LabeledValue { key?: string; value: RawValue; label: React.ReactNode; } export type SelectValue = RawValue | RawValue[] | LabeledValue | LabeledValue[] | undefined; export interface InternalSelectProps<ValueType = any, OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType> extends Omit<RcSelectProps<ValueType, OptionType>, 'mode'> { rootClassName?: string; prefix?: React.ReactNode; suffixIcon?: React.ReactNode; size?: SizeType; disabled?: boolean; mode?: 'multiple' | 'tags' | 'SECRET_COMBOBOX_MODE_DO_NOT_USE' | 'combobox'; /** @deprecated Use `variant` instead. */ bordered?: boolean; /** * @deprecated `showArrow` is deprecated which will be removed in next major version. It will be a * default behavior, you can hide it by setting `suffixIcon` to null. */ showArrow?: boolean; /** * @since 5.13.0 * @default "outlined" */ variant?: Variant; classNames?: SemanticClassNames<SemanticName> & { popup?: SemanticClassNames<PopupSemantic>; }; styles?: SemanticStyles<SemanticName> & { popup?: SemanticStyles<PopupSemantic>; }; } type SemanticName = 'root' | 'prefix' | 'suffix'; type PopupSemantic = 'root' | 'listItem' | 'list'; export type SelectClassNamesType = SemanticClassNamesType<SelectProps, SemanticName, { popup?: SemanticClassNames<PopupSemantic>; }>; export type SelectStylesType = SemanticStylesType<SelectProps, SemanticName, { popup?: SemanticStyles<PopupSemantic>; }>; export interface SelectProps<ValueType = any, OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType> extends Omit<InternalSelectProps<ValueType, OptionType>, 'mode' | 'getInputElement' | 'getRawInputElement' | 'backfill' | 'placement' | 'dropdownClassName' | 'dropdownStyle'> { placement?: SelectCommonPlacement; mode?: 'multiple' | 'tags'; status?: InputStatus; /** @deprecated Please use `classNames.popup.root` instead */ popupClassName?: string; /** @deprecated Please use `classNames.popup.root` instead */ dropdownClassName?: string; /** @deprecated Please use `styles.popup` instead */ dropdownStyle?: React.CSSProperties; /** @deprecated Please use `popupRender` instead */ dropdownRender?: SelectProps['popupRender']; /** @deprecated Please use `onOpenChange` instead */ onDropdownVisibleChange?: SelectProps['onPopupVisibleChange']; /** @deprecated Please use `popupMatchSelectWidth` instead */ dropdownMatchSelectWidth?: boolean | number; popupMatchSelectWidth?: boolean | number; styles?: SelectStylesType; classNames?: SelectClassNamesType; onOpenChange?: (visible: boolean) => void; } declare const Select: (<ValueType = any, OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType>(props: React.PropsWithChildren<SelectProps<ValueType, OptionType>> & React.RefAttributes<BaseSelectRef>) => React.ReactElement) & { displayName?: string; SECRET_COMBOBOX_MODE_DO_NOT_USE: string; Option: typeof Option; OptGroup: typeof OptGroup; _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel; }; declare const PurePanel: (props: import("../_util/type").AnyObject) => React.JSX.Element; export default Select;