style: 🎨 Run Biome formatter

This commit is contained in:
Jesse Wierzbinski 2026-01-09 21:47:12 +01:00
parent 74c3b26f20
commit 68e23a818a
No known key found for this signature in database
244 changed files with 435 additions and 470 deletions

View file

@ -14,6 +14,6 @@ const forwarded = useForwardPropsEmits(props, emits);
<template>
<DialogRoot data-slot="sheet" v-bind="forwarded">
<slot/>
<slot />
</DialogRoot>
</template>

View file

@ -6,6 +6,6 @@ const props = defineProps<DialogCloseProps>();
<template>
<DialogClose data-slot="sheet-close" v-bind="props">
<slot/>
<slot />
</DialogClose>
</template>

View file

@ -34,7 +34,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
<template>
<DialogPortal>
<SheetOverlay/>
<SheetOverlay />
<DialogContent
data-slot="sheet-content"
:class="cn(
@ -50,12 +50,12 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
props.class)"
v-bind="{ ...forwarded, ...$attrs }"
>
<slot/>
<slot />
<DialogClose
class="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none"
>
<X class="size-4"/>
<X class="size-4" />
<span class="sr-only">Close</span>
</DialogClose>
</DialogContent>

View file

@ -20,6 +20,6 @@ const delegatedProps = computed(() => {
:class="cn('text-muted-foreground text-sm', props.class)"
v-bind="delegatedProps"
>
<slot/>
<slot />
</DialogDescription>
</template>

View file

@ -11,6 +11,6 @@ const props = defineProps<{ class?: HTMLAttributes["class"] }>();
:class="cn('mt-auto flex flex-col gap-2 p-4', props.class)
"
>
<slot/>
<slot />
</div>
</template>

View file

@ -10,6 +10,6 @@ const props = defineProps<{ class?: HTMLAttributes["class"] }>();
data-slot="sheet-header"
:class="cn('flex flex-col gap-1.5 p-4', props.class)"
>
<slot/>
<slot />
</div>
</template>

View file

@ -20,6 +20,6 @@ const delegatedProps = computed(() => {
:class="cn('data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80', props.class)"
v-bind="delegatedProps"
>
<slot/>
<slot />
</DialogOverlay>
</template>

View file

@ -20,6 +20,6 @@ const delegatedProps = computed(() => {
:class="cn('text-foreground font-semibold', props.class)"
v-bind="delegatedProps"
>
<slot/>
<slot />
</DialogTitle>
</template>

View file

@ -6,6 +6,6 @@ const props = defineProps<DialogTriggerProps>();
<template>
<DialogTrigger data-slot="sheet-trigger" v-bind="props">
<slot/>
<slot />
</DialogTrigger>
</template>