mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 03:40:11 +00:00
32 lines
1.2 KiB
Svelte
32 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { ScrollArea as ScrollAreaPrimitive, type WithoutChild } from "bits-ui";
|
|
import { Scrollbar } from "./index.js";
|
|
import { cn } from "$lib/utils/cn.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
orientation = "vertical",
|
|
scrollbarXClasses = "",
|
|
scrollbarYClasses = "",
|
|
children,
|
|
...restProps
|
|
}: WithoutChild<ScrollAreaPrimitive.RootProps> & {
|
|
orientation?: "vertical" | "horizontal" | "both" | undefined;
|
|
scrollbarXClasses?: string | undefined;
|
|
scrollbarYClasses?: string | undefined;
|
|
} = $props();
|
|
</script>
|
|
|
|
<ScrollAreaPrimitive.Root bind:ref {...restProps} class={cn("relative overflow-hidden", className)}>
|
|
<ScrollAreaPrimitive.Viewport class="h-full w-full rounded-[inherit]">
|
|
{@render children?.()}
|
|
</ScrollAreaPrimitive.Viewport>
|
|
{#if orientation === "vertical" || orientation === "both"}
|
|
<Scrollbar orientation="vertical" class={cn(scrollbarYClasses, "data-[state=hidden]:animate-none data-[state=hidden]:opacity-100")} />
|
|
{/if}
|
|
{#if orientation === "horizontal" || orientation === "both"}
|
|
<Scrollbar orientation="horizontal" class={cn(scrollbarXClasses, "data-[state=hidden]:animate-none data-[state=hidden]:opacity-100")} />
|
|
{/if}
|
|
<ScrollAreaPrimitive.Corner />
|
|
</ScrollAreaPrimitive.Root>
|