Initial commit of the L'Ami Fiduciaire SaaS platform built on Laravel 12, Vue 3, Inertia.js 2, and Tailwind CSS 4. Story 0.1 (rename folders to declarations in database) is implemented and code-reviewed: migration, rollback, and 6 Pest tests all passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
1.3 KiB
Vue
36 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { PrimitiveProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { Primitive } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = withDefaults(defineProps<PrimitiveProps & {
|
|
showOnHover?: boolean
|
|
class?: HTMLAttributes["class"]
|
|
}>(), {
|
|
as: "button",
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
data-slot="sidebar-menu-action"
|
|
data-sidebar="menu-action"
|
|
:class="cn(
|
|
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground peer-hover/menu-button:text-sidebar-accent-foreground absolute top-1.5 right-1 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hidden transition-transform focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
'after:absolute after:-inset-2 md:after:hidden',
|
|
'peer-data-[size=sm]/menu-button:top-1',
|
|
'peer-data-[size=default]/menu-button:top-1.5',
|
|
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
showOnHover
|
|
&& 'peer-data-[active=true]/menu-button:text-sidebar-accent-foreground group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 md:opacity-0',
|
|
props.class,
|
|
)"
|
|
:as="as"
|
|
:as-child="asChild"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|