mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
34 lines
1.3 KiB
Vue
34 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { ContextMenuRadioItemEmits, ContextMenuRadioItemProps } from 'reka-ui';
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { reactiveOmit } from '@vueuse/core';
|
|
import { Circle } from 'lucide-vue-next';
|
|
import { ContextMenuItemIndicator, ContextMenuRadioItem, useForwardPropsEmits } from 'reka-ui';
|
|
import { cn } from '../utils/cn';
|
|
|
|
const props = defineProps<ContextMenuRadioItemProps & { class?: HTMLAttributes['class'] }>();
|
|
const emits = defineEmits<ContextMenuRadioItemEmits>();
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class');
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuRadioItem
|
|
v-bind="forwarded"
|
|
:class="
|
|
cn(
|
|
'relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
props.class
|
|
)
|
|
">
|
|
<span class="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
<ContextMenuItemIndicator>
|
|
<Circle class="h-4 w-4 fill-current" />
|
|
</ContextMenuItemIndicator>
|
|
</span>
|
|
<slot />
|
|
</ContextMenuRadioItem>
|
|
</template>
|