first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

32
node_modules/vant/es/popup/shared.d.ts generated vendored Normal file
View File

@@ -0,0 +1,32 @@
import type { OverlayProps } from '../overlay';
import { Interceptor } from '../utils';
import type { PropType, CSSProperties, TeleportProps } from 'vue';
export declare const popupSharedProps: {
show: BooleanConstructor;
zIndex: (NumberConstructor | StringConstructor)[];
overlay: {
type: BooleanConstructor;
default: true;
};
duration: (NumberConstructor | StringConstructor)[];
teleport: PropType<TeleportProps["to"]>;
lockScroll: {
type: BooleanConstructor;
default: true;
};
lazyRender: {
type: BooleanConstructor;
default: true;
};
beforeClose: PropType<Interceptor>;
overlayProps: PropType<Partial<OverlayProps>>;
overlayStyle: PropType<CSSProperties>;
overlayClass: PropType<unknown>;
transitionAppear: BooleanConstructor;
closeOnClickOverlay: {
type: BooleanConstructor;
default: true;
};
};
export type PopupSharedPropKeys = Array<keyof typeof popupSharedProps>;
export declare const popupSharedPropKeys: PopupSharedPropKeys;