添加 cl-calendar 组件

This commit is contained in:
icssoa
2025-09-09 22:08:21 +08:00
parent b5fea283ac
commit 3deed8ff78
10 changed files with 1349 additions and 2 deletions

12
types/uni-app.d.ts vendored
View File

@@ -430,6 +430,17 @@ declare const onUnhandledRejection: (
declare const onUnload: (hook: () => any, target?: ComponentInternalInstance | null) => void;
declare interface DOMRect {
x: number;
y: number;
width: number;
height: number;
left: number;
top: number;
right: number;
bottom: number;
}
declare interface UniElement {
$vm: ComponentPublicInstance;
id: string;
@@ -446,6 +457,7 @@ declare interface UniElement {
success?: (res: { tempFilePath: string }) => void;
fail?: (err: { errCode: number; errMsg: string }) => void;
}): void;
getBoundingClientRectAsync(): Promise<DOMRect>;
getDrawableContext(): DrawableContext;
animate(
keyframes: UniAnimationKeyframe | UniAnimationKeyframe[],