CI / changes (push) Successful in 10s
CI / commitlint (push) Has been skipped
CI / openapi (push) Successful in 27s
CI / web (push) Successful in 38s
CI / go (push) Successful in 2m36s
CI / bird2 (push) Successful in 15s
CI / release (push) Failing after 3m7s
Refactored the project structure to support a monorepo setup, moving the web application to `apps/web/` and updating related configurations. Adjusted pre-commit hooks to use `pnpm` for linting and formatting. Updated CI workflows to reflect the new directory structure and dependencies. Removed legacy files and configurations from the previous `web/` directory, streamlining the project for better maintainability and clarity.
44 lines
1.4 KiB
Svelte
44 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { ScrollArea as ScrollAreaPrimitive } from 'bits-ui';
|
|
import { Scrollbar } from './index.js';
|
|
import { cn, type WithoutChild } from '@evobgp/ui/lib/utils';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
viewportRef = $bindable(null),
|
|
class: className,
|
|
orientation = 'vertical',
|
|
scrollbarXClasses = '',
|
|
scrollbarYClasses = '',
|
|
children,
|
|
...restProps
|
|
}: WithoutChild<ScrollAreaPrimitive.RootProps> & {
|
|
orientation?: 'vertical' | 'horizontal' | 'both' | undefined;
|
|
scrollbarXClasses?: string | undefined;
|
|
scrollbarYClasses?: string | undefined;
|
|
viewportRef?: HTMLElement | null;
|
|
} = $props();
|
|
</script>
|
|
|
|
<ScrollAreaPrimitive.Root
|
|
bind:ref
|
|
data-slot="scroll-area"
|
|
class={cn('relative', className)}
|
|
{...restProps}
|
|
>
|
|
<ScrollAreaPrimitive.Viewport
|
|
bind:ref={viewportRef}
|
|
data-slot="scroll-area-viewport"
|
|
class="cn-scroll-area-viewport size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1"
|
|
>
|
|
{@render children?.()}
|
|
</ScrollAreaPrimitive.Viewport>
|
|
{#if orientation === 'vertical' || orientation === 'both'}
|
|
<Scrollbar orientation="vertical" class={scrollbarYClasses} />
|
|
{/if}
|
|
{#if orientation === 'horizontal' || orientation === 'both'}
|
|
<Scrollbar orientation="horizontal" class={scrollbarXClasses} />
|
|
{/if}
|
|
<ScrollAreaPrimitive.Corner />
|
|
</ScrollAreaPrimitive.Root>
|