* fix: toggle not setting pressed property on init * refactor: move class outside of toggleVariants
50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import type { ToggleEmits, ToggleProps } from 'radix-vue'
|
|
import { Toggle, useForwardPropsEmits } from 'radix-vue'
|
|
import type { VariantProps } from 'class-variance-authority'
|
|
import { computed, useAttrs } from 'vue'
|
|
import { toggleVariants } from '.'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
interface ToggleVariantProps extends VariantProps<typeof toggleVariants> {}
|
|
|
|
interface Props extends ToggleProps {
|
|
variant?: ToggleVariantProps['variant']
|
|
size?: ToggleVariantProps['size']
|
|
disabled?: boolean
|
|
}
|
|
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
})
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
variant: 'default',
|
|
size: 'default',
|
|
disabled: false,
|
|
})
|
|
const emits = defineEmits<ToggleEmits>()
|
|
|
|
const toggleProps = computed(() => {
|
|
// eslint-disable-next-line unused-imports/no-unused-vars
|
|
const { variant, size, disabled, ...otherProps } = props
|
|
return otherProps
|
|
})
|
|
|
|
const { class: className, ...rest } = useAttrs()
|
|
const forwarded = useForwardPropsEmits(toggleProps.value, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<Toggle
|
|
v-bind="{
|
|
...forwarded,
|
|
...rest,
|
|
}"
|
|
:class="cn(toggleVariants({ variant, size }), className ?? '')"
|
|
:disabled="props.disabled"
|
|
>
|
|
<slot />
|
|
</Toggle>
|
|
</template>
|