diff --git a/components/vc-trigger/Popup/interface.ts b/components/vc-trigger/Popup/interface.ts index 6f6fc2d3ec..9c5a8cf040 100644 --- a/components/vc-trigger/Popup/interface.ts +++ b/components/vc-trigger/Popup/interface.ts @@ -22,6 +22,9 @@ export const innerProps = { point: { type: Object as PropType }, getRootDomNode: { type: Function as PropType<() => HTMLElement> }, getClassNameFromAlign: { type: Function as PropType<(align: AlignType) => string> }, + onAlign: { + type: Function as PropType<(popupDomNode: HTMLElement, align: AlignType) => void>, + }, onMouseenter: { type: Function as PropType<(align: MouseEvent) => void> }, onMouseleave: { type: Function as PropType<(align: MouseEvent) => void> }, onMousedown: { type: Function as PropType<(align: MouseEvent) => void> },