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.
20 lines
867 B
20 lines
867 B
import * as React from 'react';
|
|
import type { AlignType } from 'rc-trigger/lib/interface';
|
|
declare type Placement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight';
|
|
export declare type PickerTriggerProps = {
|
|
prefixCls: string;
|
|
visible: boolean;
|
|
popupElement: React.ReactElement;
|
|
popupStyle?: React.CSSProperties;
|
|
children: React.ReactElement;
|
|
dropdownClassName?: string;
|
|
transitionName?: string;
|
|
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
dropdownAlign?: AlignType;
|
|
range?: boolean;
|
|
popupPlacement?: Placement;
|
|
direction?: 'ltr' | 'rtl';
|
|
};
|
|
declare function PickerTrigger({ prefixCls, popupElement, popupStyle, visible, dropdownClassName, dropdownAlign, transitionName, getPopupContainer, children, range, popupPlacement, direction, }: PickerTriggerProps): JSX.Element;
|
|
export default PickerTrigger;
|