前端初始化

This commit is contained in:
“hsc”
2026-08-21 15:36:24 +08:00
commit e4d8ecde13
14411 changed files with 2275932 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
import { Arrayable, ClassValue } from "../../../utils/typescript.js";
import { PopperEffect, PopperInstance } from "../../popper/src/popper.js";
import { Options, Placement } from "../../popper/index.js";
import { TooltipTriggerType } from "../../tooltip/src/trigger.js";
import { PopoverProps } from "./popover.js";
import * as _$vue from "vue";
//#region ../../packages/components/popover/src/popover.vue.d.ts
declare var __VLS_14: {}, __VLS_17: {
hide: () => void;
};
type __VLS_Slots = {} & {
reference?: (props: typeof __VLS_14) => any;
} & {
default?: (props: typeof __VLS_17) => any;
};
declare const __VLS_base: _$vue.DefineComponent<PopoverProps, {
/** @description popper ref */popperRef: _$vue.ComputedRef<PopperInstance | undefined>; /** @description hide popover */
hide: () => void;
}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
"update:visible": (value: boolean) => void;
"before-enter": () => void;
"before-leave": () => void;
"after-enter": () => void;
"after-leave": () => void;
}, string, _$vue.PublicProps, Readonly<PopoverProps> & Readonly<{
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
"onBefore-enter"?: (() => any) | undefined;
"onBefore-leave"?: (() => any) | undefined;
"onAfter-enter"?: (() => any) | undefined;
"onAfter-leave"?: (() => any) | undefined;
}>, {
effect: PopperEffect;
popperClass: string | false | Record<string, any> | ClassValue[] | null;
popperStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
popperOptions: Partial<Options>;
placement: Placement;
strategy: "fixed" | "absolute";
showAfter: number;
hideAfter: number;
autoClose: number;
boundariesPadding: number;
offset: number;
arrowOffset: number;
style: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
enterable: boolean;
stopPopperMouseEvent: boolean;
loop: boolean;
visible: boolean | null;
pure: boolean;
focusOnShow: boolean;
trapping: boolean;
virtualTriggering: boolean;
content: string;
teleported: boolean;
persistent: boolean;
showArrow: boolean;
tabindex: string | number;
title: string;
trigger: Arrayable<TooltipTriggerType>;
triggerKeys: string[];
width: string | 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 };