mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
format and fix eslint
This commit is contained in:
parent
cc08b07a2c
commit
761954e722
@ -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
|
||||
}
|
||||
|
@ -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>
|
||||
|
@ -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 />
|
||||
|
@ -1 +1 @@
|
||||
export {default as Markdown} from './Markdown.svelte';
|
||||
export { default as Markdown } from "./Markdown.svelte"
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user