* refactor: change all popper related element to use useForwardPropsEmits * refactor: use useEmitAsProps from radix-vue
26 lines
1.0 KiB
Vue
26 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import type { SliderRootEmits, SliderRootProps } from 'radix-vue'
|
|
import { SliderRange, SliderRoot, SliderThumb, SliderTrack, useEmitAsProps } from 'radix-vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<SliderRootProps>()
|
|
const emits = defineEmits<SliderRootEmits>()
|
|
|
|
const emitsAsProps = useEmitAsProps(emits)
|
|
</script>
|
|
|
|
<template>
|
|
<SliderRoot
|
|
:class="cn(
|
|
'relative flex w-full touch-none select-none items-center',
|
|
$attrs.class ?? '',
|
|
)"
|
|
v-bind="{ ...props, ...emitsAsProps }"
|
|
>
|
|
<SliderTrack class="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary">
|
|
<SliderRange class="absolute h-full bg-primary" />
|
|
</SliderTrack>
|
|
<SliderThumb class="block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" />
|
|
</SliderRoot>
|
|
</template>
|