* chore: document OpenAPI support * chore: update readme * refactor: use scrollArea wherever applicable * chore: update demo video * build: exclude more files from the release * style: apply TS style fixes
52 lines
1.4 KiB
Vue
52 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
/**
|
|
* @component AppScrollArea
|
|
* @description A custom-styled scrollable container using radix-ui primitives.
|
|
*/
|
|
import { cn } from '@/utils/ui';
|
|
import { reactiveOmit } from '@vueuse/core';
|
|
import type { ScrollAreaRootProps } from 'reka-ui';
|
|
import { ScrollAreaCorner, ScrollAreaRoot, ScrollAreaViewport } from 'reka-ui';
|
|
import { type HTMLAttributes, ref } from 'vue';
|
|
import AppScrollBar from './AppScrollBar.vue';
|
|
|
|
/*
|
|
* Types & Interfaces.
|
|
*/
|
|
|
|
export interface AppScrollAreaProps extends ScrollAreaRootProps {
|
|
class?: HTMLAttributes['class'];
|
|
}
|
|
|
|
/*
|
|
* Component Setup.
|
|
*/
|
|
|
|
const props = defineProps<AppScrollAreaProps>();
|
|
const delegatedProps = reactiveOmit(props, 'class');
|
|
|
|
const viewport = ref<HTMLElement | null>(null);
|
|
|
|
defineExpose({
|
|
viewport,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ScrollAreaRoot
|
|
data-slot="scroll-area"
|
|
v-bind="delegatedProps"
|
|
:class="cn('relative', props.class)"
|
|
>
|
|
<ScrollAreaViewport
|
|
ref="viewport"
|
|
data-slot="scroll-area-viewport"
|
|
class="focus-visible:ring-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&>div]:h-full"
|
|
>
|
|
<slot />
|
|
</ScrollAreaViewport>
|
|
<AppScrollBar />
|
|
<ScrollAreaCorner />
|
|
</ScrollAreaRoot>
|
|
</template>
|