Migrate all shadcn components into apps/web/components/ui/ so the web app is fully independent from packages/ui for its UI layer. Update to the latest shadcn base-nova style. Add missing semantic color variables (success, warning, info, canvas), font-mono mapping, scrollbar styling, and wrap Select items in SelectGroup for proper padding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
import { mergeProps } from "@base-ui/react/merge-props"
|
|
import { useRender } from "@base-ui/react/use-render"
|
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { Separator } from "@/components/ui/separator"
|
|
|
|
const buttonGroupVariants = cva(
|
|
"flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-lg [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1",
|
|
{
|
|
variants: {
|
|
orientation: {
|
|
horizontal:
|
|
"*:data-slot:rounded-r-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-lg! [&>[data-slot]~[data-slot]]:rounded-l-none [&>[data-slot]~[data-slot]]:border-l-0",
|
|
vertical:
|
|
"flex-col *:data-slot:rounded-b-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-lg! [&>[data-slot]~[data-slot]]:rounded-t-none [&>[data-slot]~[data-slot]]:border-t-0",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
orientation: "horizontal",
|
|
},
|
|
}
|
|
)
|
|
|
|
function ButtonGroup({
|
|
className,
|
|
orientation,
|
|
...props
|
|
}: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>) {
|
|
return (
|
|
<div
|
|
role="group"
|
|
data-slot="button-group"
|
|
data-orientation={orientation}
|
|
className={cn(buttonGroupVariants({ orientation }), className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ButtonGroupText({
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div">) {
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(
|
|
{
|
|
className: cn(
|
|
"flex items-center gap-2 rounded-lg border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",
|
|
className
|
|
),
|
|
},
|
|
props
|
|
),
|
|
render,
|
|
state: {
|
|
slot: "button-group-text",
|
|
},
|
|
})
|
|
}
|
|
|
|
function ButtonGroupSeparator({
|
|
className,
|
|
orientation = "vertical",
|
|
...props
|
|
}: React.ComponentProps<typeof Separator>) {
|
|
return (
|
|
<Separator
|
|
data-slot="button-group-separator"
|
|
orientation={orientation}
|
|
className={cn(
|
|
"relative self-stretch bg-input data-horizontal:mx-px data-horizontal:w-auto data-vertical:my-px data-vertical:h-auto",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
ButtonGroup,
|
|
ButtonGroupSeparator,
|
|
ButtonGroupText,
|
|
buttonGroupVariants,
|
|
}
|