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

@ -13,7 +13,7 @@ const props = defineProps<{
data-slot="table"
:class="cn('w-full caption-bottom text-sm', props.class)"
>
<slot/>
<slot />
</table>
</div>
</template>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="table-body"
:class="cn('[&_tr:last-child]:border-0', props.class)"
>
<slot/>
<slot />
</tbody>
</template>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="table-caption"
:class="cn('text-muted-foreground mt-4 text-sm', props.class)"
>
<slot/>
<slot />
</caption>
</template>

View file

@ -17,6 +17,6 @@ const props = defineProps<{
)
"
>
<slot/>
<slot />
</td>
</template>

View file

@ -33,7 +33,7 @@ const delegatedProps = computed(() => {
v-bind="delegatedProps"
>
<div class="flex items-center justify-center py-10">
<slot/>
<slot />
</div>
</TableCell>
</TableRow>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="table-footer"
:class="cn('bg-muted/50 border-t font-medium [&>tr]:last:border-b-0', props.class)"
>
<slot/>
<slot />
</tfoot>
</template>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="table-head"
:class="cn('text-muted-foreground h-10 px-2 text-left align-middle font-medium whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]', props.class)"
>
<slot/>
<slot />
</th>
</template>

View file

@ -9,6 +9,6 @@ const props = defineProps<{
<template>
<thead data-slot="table-header" :class="cn('[&_tr]:border-b', props.class)">
<slot/>
<slot />
</thead>
</template>

View file

@ -12,6 +12,6 @@ const props = defineProps<{
data-slot="table-row"
:class="cn('hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors', props.class)"
>
<slot/>
<slot />
</tr>
</template>