47 lines
1.5 KiB
Svelte
47 lines
1.5 KiB
Svelte
<script lang="ts" module>
|
|
import { tv, type VariantProps } from "tailwind-variants";
|
|
|
|
export const buttonGroupVariants = tv({
|
|
base: "flex w-fit items-stretch has-[>[data-slot=button-group]]:gap-2 [&>*]:focus-visible:relative [&>*]:focus-visible:z-10 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1",
|
|
variants: {
|
|
orientation: {
|
|
horizontal:
|
|
"[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none",
|
|
vertical:
|
|
"flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
orientation: "horizontal",
|
|
},
|
|
});
|
|
|
|
export type ButtonGroupOrientation = VariantProps<typeof buttonGroupVariants>["orientation"];
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { cn, type WithElementRef } from "$lib/utils.js";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
orientation = "horizontal",
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
orientation?: ButtonGroupOrientation;
|
|
} = $props();
|
|
</script>
|
|
|
|
<div
|
|
bind:this={ref}
|
|
role="group"
|
|
data-slot="button-group"
|
|
data-orientation={orientation}
|
|
class={cn(buttonGroupVariants({ orientation }), className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</div>
|