chore: update shadcn-svelte components

This commit is contained in:
2026-06-27 10:14:48 +01:00
parent e6f79cd68a
commit 6fd01c917b
400 changed files with 2041 additions and 2221 deletions
@@ -1,12 +1,12 @@
<script lang="ts">
import { cn } from '$lib/utils/format.js';
import type { ComponentProps } from 'svelte';
import { Separator } from '$lib/components/ui/separator/index.js';
import { cn } from "$lib/utils.js";
import type { ComponentProps } from "svelte";
import { Separator } from "$lib/components/ui/separator/index.js";
let {
ref = $bindable(null),
class: className,
orientation = 'vertical',
orientation = "vertical",
...restProps
}: ComponentProps<typeof Separator> = $props();
</script>
@@ -16,7 +16,7 @@
data-slot="button-group-separator"
{orientation}
class={cn(
'relative self-stretch bg-input data-[orientation=horizontal]:mx-px data-[orientation=horizontal]:w-auto data-[orientation=vertical]:my-px data-[orientation=vertical]:h-auto',
"bg-input relative self-stretch data-[orientation=horizontal]:mx-px data-[orientation=horizontal]:w-auto data-[orientation=vertical]:my-px data-[orientation=vertical]:h-auto",
className
)}
{...restProps}