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