chore: add shadcn svelte ui primitives

This commit is contained in:
2026-06-05 23:25:59 +01:00
parent f3e4f42272
commit 37f73d15e4
406 changed files with 10398 additions and 0 deletions
@@ -0,0 +1,39 @@
<script lang="ts">
import type { WithoutChildren } from "bits-ui";
import { getEmblaContext } from "./context.js";
import { cn } from "$lib/utils.js";
import { Button, type Props } from "$lib/components/ui/button/index.js";
import ChevronRightIcon from '@lucide/svelte/icons/chevron-right';
let {
ref = $bindable(null),
class: className,
variant = "outline",
size = "icon-sm",
...restProps
}: WithoutChildren<Props> = $props();
const emblaCtx = getEmblaContext("<Carousel.Next/>");
</script>
<Button
data-slot="carousel-next"
{variant}
{size}
aria-disabled={!emblaCtx.canScrollNext}
disabled={!emblaCtx.canScrollNext}
class={cn(
"rounded-full absolute touch-manipulation",
emblaCtx.orientation === "horizontal"
? "-end-12 top-1/2 -translate-y-1/2"
: "start-1/2 -bottom-12 -translate-x-1/2 rotate-90",
className
)}
onclick={emblaCtx.scrollNext}
onkeydown={emblaCtx.handleKeyDown}
bind:ref
{...restProps}
>
<ChevronRightIcon />
<span class="sr-only">Next slide</span>
</Button>