413c84e293
- Update buttons, inputs, menus, tabs, sliders, and dialogs to show pointer cursors - Keep disabled states unchanged
29 lines
904 B
Svelte
29 lines
904 B
Svelte
<script lang="ts">
|
|
import { Menubar as MenubarPrimitive, type WithoutChild } from "bits-ui";
|
|
import ChevronRight from "@lucide/svelte/icons/chevron-right";
|
|
import { cn } from "$lib/components/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
inset = undefined,
|
|
children,
|
|
...restProps
|
|
}: WithoutChild<MenubarPrimitive.SubTriggerProps> & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<MenubarPrimitive.SubTrigger
|
|
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-pointer select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
inset && "pl-8",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<ChevronRight class="ml-auto size-4" />
|
|
</MenubarPrimitive.SubTrigger>
|