UNPKG

tdesign-vue-next

Version:
9 lines (8 loc) 663 B
import { TdSelectInputProps } from '../type'; import { PopupVisibleChangeContext } from '../../popup'; export type overlayInnerStyleProps = Pick<TdSelectInputProps, 'popupProps' | 'autoWidth' | 'readonly' | 'onPopupVisibleChange' | 'disabled' | 'allowInput' | 'popupVisible'>; export declare function useOverlayInnerStyle(props: overlayInnerStyleProps): { tOverlayInnerStyle: import("vue").ComputedRef<import("../..").Styles | ((triggerElement: HTMLElement, popupElement: HTMLElement) => import("../..").Styles)>; innerPopupVisible: import("vue").Ref<boolean>; onInnerPopupVisibleChange: (visible: boolean, ctx: PopupVisibleChangeContext) => void; };