PickerTrigger.d.ts 671 B

12345678910111213141516171819
  1. import type { CSSProperties } from 'vue';
  2. import type { AlignType } from '../vc-align/interface';
  3. declare type Placement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight';
  4. export declare type PickerTriggerProps = {
  5. prefixCls: string;
  6. visible: boolean;
  7. popupStyle?: CSSProperties;
  8. dropdownClassName?: string;
  9. transitionName?: string;
  10. getPopupContainer?: (node: HTMLElement) => HTMLElement;
  11. dropdownAlign?: AlignType;
  12. range?: boolean;
  13. popupPlacement?: Placement;
  14. direction?: 'ltr' | 'rtl';
  15. };
  16. declare function PickerTrigger(props: PickerTriggerProps, { slots }: {
  17. slots: any;
  18. }): JSX.Element;
  19. export default PickerTrigger;