All checks were successful
SteamWarCI Build successful
- Enhanced EventEdit component with AlertDialog for delete confirmation. - Added Menubar component to EventFightList for batch editing options. - Updated alert-dialog components to streamline props and improve reactivity. - Refactored menubar components for better structure and usability. - Improved accessibility and code readability across various components.
20 lines
577 B
Svelte
20 lines
577 B
Svelte
<script lang="ts">
|
|
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/components/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: MenubarPrimitive.TriggerProps = $props();
|
|
</script>
|
|
|
|
<MenubarPrimitive.Trigger
|
|
bind:ref
|
|
class={cn(
|
|
"data-[highlighted]:bg-accent data-[state=open]:bg-accent data-[highlighted]:text-accent-foreground data-[state=open]:text-accent-foreground flex cursor-default select-none items-center rounded-sm px-3 py-1.5 text-sm font-medium outline-none",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
/>
|