UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

20 lines (19 loc) 681 B
import type { CSSProperties } from 'vue'; import type { AlignType } from '../vc-align/interface'; type Placement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; export type PickerTriggerProps = { prefixCls: string; visible: boolean; popupStyle?: CSSProperties; dropdownClassName?: string; transitionName?: string; getPopupContainer?: (node: HTMLElement) => HTMLElement; dropdownAlign?: AlignType; range?: boolean; popupPlacement?: Placement; direction?: 'ltr' | 'rtl'; }; declare function PickerTrigger(props: PickerTriggerProps, { slots }: { slots: any; }): import("vue/jsx-runtime").JSX.Element; export default PickerTrigger;