<script setup lang="ts">
|
import type { VariantProps } from 'class-variance-authority';
|
import type { ToggleGroupRootEmits, ToggleGroupRootProps } from 'reka-ui';
|
|
import type { HTMLAttributes } from 'vue';
|
|
import type { toggleVariants } from '../toggle';
|
|
import { provide } from 'vue';
|
|
import { cn } from '..\..\..\..\..\base\shared\src\utils';
|
|
import { reactiveOmit } from '@vueuse/core';
|
import { ToggleGroupRoot, useForwardPropsEmits } from 'reka-ui';
|
|
type ToggleGroupVariants = VariantProps<typeof toggleVariants>;
|
|
const props = withDefaults(
|
defineProps<
|
ToggleGroupRootProps & {
|
class?: HTMLAttributes['class'];
|
size?: ToggleGroupVariants['size'];
|
spacing?: number;
|
variant?: ToggleGroupVariants['variant'];
|
}
|
>(),
|
{
|
spacing: 0,
|
},
|
);
|
|
const emits = defineEmits<ToggleGroupRootEmits>();
|
|
provide('toggleGroup', {
|
variant: props.variant,
|
size: props.size,
|
spacing: props.spacing,
|
});
|
|
const delegatedProps = reactiveOmit(props, 'class', 'size', 'variant');
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
</script>
|
|
<template>
|
<ToggleGroupRoot
|
v-slot="slotProps"
|
data-slot="toggle-group"
|
:data-size="size"
|
:data-variant="variant"
|
:data-spacing="spacing"
|
:style="{
|
'--gap': spacing,
|
}"
|
v-bind="forwarded"
|
:class="
|
cn(
|
'group/toggle-group flex w-fit items-center gap-[--spacing(var(--gap))] rounded-md data-[spacing=default]:data-[variant=outline]:shadow-xs',
|
props.class,
|
)
|
"
|
>
|
<slot v-bind="slotProps"></slot>
|
</ToggleGroupRoot>
|
</template>
|