| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { PopperEffect } from "./popper.js";
- import { PopperContentProps } from "./content.js";
- import { Options as Options$1, Placement as Placement$1 } from "../index.js";
- import * as _$vue from "vue";
- import * as _$_popperjs_core0 from "@popperjs/core";
- //#region ../../packages/components/popper/src/content.vue.d.ts
- declare var __VLS_13: {};
- type __VLS_Slots = {} & {
- default?: (props: typeof __VLS_13) => any;
- };
- declare const __VLS_base: _$vue.DefineComponent<PopperContentProps, {
- /**
- * @description popper content element
- */
- popperContentRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
- /**
- * @description popperjs instance
- */
- popperInstanceRef: _$vue.ComputedRef<_$_popperjs_core0.Instance | undefined>;
- /**
- * @description method for updating popper
- */
- updatePopper: (shouldUpdateZIndex?: boolean) => void;
- /**
- * @description content style
- */
- contentStyle: _$vue.ComputedRef<_$vue.StyleValue[]>;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- focus: () => void;
- blur: () => void;
- mouseleave: (evt: MouseEvent) => void;
- mouseenter: (evt: MouseEvent) => void;
- close: () => void;
- }, string, _$vue.PublicProps, Readonly<PopperContentProps> & Readonly<{
- onFocus?: (() => any) | undefined;
- onBlur?: (() => any) | undefined;
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
- onClose?: (() => any) | undefined;
- }>, {
- visible: boolean;
- style: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
- offset: number;
- effect: PopperEffect;
- enterable: boolean;
- pure: boolean;
- focusOnShow: boolean;
- trapping: boolean;
- popperStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
- stopPopperMouseEvent: boolean;
- virtualTriggering: boolean;
- loop: boolean;
- boundariesPadding: number;
- gpuAcceleration: boolean;
- placement: Placement$1;
- popperOptions: Partial<Options$1>;
- strategy: "fixed" | "absolute";
- arrowOffset: number;
- }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
- declare const _default: typeof __VLS_export;
- type __VLS_WithSlots<T, S> = T & {
- new (): {
- $slots: S;
- };
- };
- //#endregion
- export { _default as default };
|