From cc620ad429c3f9aa1da43143c52f51d00915ecdd Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Fri, 3 Jan 2025 09:51:05 -0800 Subject: [PATCH] chore: clean up (#3503) --- assets/auto-imports.d.ts | 2 ++ assets/components/LogViewer/ComplexLogItem.vue | 10 ++-------- assets/components/LogViewer/LogList.vue | 4 ---- assets/components/common/CarouselItem.vue | 2 +- assets/pages/index.vue | 16 ---------------- assets/pages/login.vue | 2 +- 6 files changed, 6 insertions(+), 30 deletions(-) diff --git a/assets/auto-imports.d.ts b/assets/auto-imports.d.ts index aebd2d4c2a93..772d304deb20 100644 --- a/assets/auto-imports.d.ts +++ b/assets/auto-imports.d.ts @@ -87,6 +87,7 @@ declare global { const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] const onClickOutside: typeof import('@vueuse/core')['onClickOutside'] const onDeactivated: typeof import('vue')['onDeactivated'] + const onElementRemoval: typeof import('@vueuse/core')['onElementRemoval'] const onErrorCaptured: typeof import('vue')['onErrorCaptured'] const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke'] const onLongPress: typeof import('@vueuse/core')['onLongPress'] @@ -475,6 +476,7 @@ declare module 'vue' { readonly onBeforeUpdate: UnwrapRef readonly onClickOutside: UnwrapRef readonly onDeactivated: UnwrapRef + readonly onElementRemoval: UnwrapRef readonly onErrorCaptured: UnwrapRef readonly onKeyStroke: UnwrapRef readonly onLongPress: UnwrapRef diff --git a/assets/components/LogViewer/ComplexLogItem.vue b/assets/components/LogViewer/ComplexLogItem.vue index aa35420f2902..c1a01eaa77a2 100644 --- a/assets/components/LogViewer/ComplexLogItem.vue +++ b/assets/components/LogViewer/ComplexLogItem.vue @@ -1,7 +1,7 @@