format and fix eslint

This commit is contained in:
Huakun Shen 2025-03-13 21:06:11 -04:00
parent cc08b07a2c
commit 761954e722
No known key found for this signature in database
5 changed files with 17 additions and 14 deletions

View File

@ -14,7 +14,7 @@
// export { className as class }
let { locations = [], class: className }: { class?: string; locations?: [number, number][] } =
$props()
let pointerInteracting: any = null
let pointerInteracting: number | null = null
let pointerInteractionMovement = 0
let canvas: HTMLCanvasElement
@ -25,7 +25,8 @@
width = canvas.offsetWidth
}
let onRender = (state: any) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let onRender = (state: Record<string, any>) => {
if (!pointerInteracting) {
phi += 0.005
}

View File

@ -29,6 +29,8 @@
<!-- Background Gradient -->
<div
class={cn("absolute inset-0 bg-gradient-to-t from-white to-transparent to-90% dark:from-background")}
class={cn(
"dark:from-background absolute inset-0 bg-gradient-to-t from-white to-transparent to-90%"
)}
></div>
</div>

View File

@ -1,15 +1,15 @@
<script lang="ts">
import { Button } from '@kksh/svelte5';
import { CopyIcon } from 'lucide-svelte';
import type { Snippet } from 'svelte';
import { Button } from "@kksh/svelte5"
import { CopyIcon } from "lucide-svelte"
import type { Snippet } from "svelte"
let pre: HTMLPreElement;
let pre: HTMLPreElement
let {
children,
class: className,
style
}: { children: Snippet; class?: string; style?: string } = $props();
}: { children: Snippet; class?: string; style?: string } = $props()
</script>
<div class="relative">
@ -17,7 +17,7 @@
<Button
size="icon"
variant="outline"
onclick={() => navigator.clipboard.writeText(pre.textContent ?? '')}
onclick={() => navigator.clipboard.writeText(pre.textContent ?? "")}
class="absolute right-2 top-2"
>
<CopyIcon />

View File

@ -1 +1 @@
export {default as Markdown} from './Markdown.svelte';
export { default as Markdown } from "./Markdown.svelte"

View File

@ -1,10 +1,10 @@
import Scrollbar from "./scroll-area-scrollbar.svelte";
import Root from "./scroll-area.svelte";
import Scrollbar from "./scroll-area-scrollbar.svelte"
import Root from "./scroll-area.svelte"
export {
Root,
Scrollbar,
//,
Root as ScrollArea,
Scrollbar as ScrollAreaScrollbar,
};
Scrollbar as ScrollAreaScrollbar
}