UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

46 lines 3.55 kB
'use client'; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Dialog as SheetPrimitive } from 'radix-ui'; import { MdClose } from 'react-icons/md'; import { cn } from '#src/utils/index.js'; /** * React component that overlays a sheet on top of the current page. * * https://ui.shadcn.com/docs/components/sheet */ function Sheet({ ...props }) { return _jsx(SheetPrimitive.Root, { "data-slot": "sheet", ...props }); } function SheetTrigger({ ...props }) { return _jsx(SheetPrimitive.Trigger, { "data-slot": "sheet-trigger", ...props }); } function SheetClose({ ...props }) { return _jsx(SheetPrimitive.Close, { "data-slot": "sheet-close", ...props }); } function SheetPortal({ ...props }) { return _jsx(SheetPrimitive.Portal, { "data-slot": "sheet-portal", ...props }); } function SheetOverlay({ className, ...props }) { return (_jsx(SheetPrimitive.Overlay, { "data-slot": "sheet-overlay", className: cn('fixed inset-0 z-50 bg-black/50 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0', className), ...props })); } function SheetContent({ className, children, side = 'right', ...props }) { return (_jsxs(SheetPortal, { children: [_jsx(SheetOverlay, {}), _jsxs(SheetPrimitive.Content, { "data-slot": "sheet-content", className: cn('fixed z-50 flex flex-col gap-4 bg-background shadow-lg transition ease-in-out data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:animate-in data-[state=open]:duration-500', side === 'right' && 'inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm', side === 'left' && 'inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm', side === 'top' && 'inset-x-0 top-0 h-auto border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top', side === 'bottom' && 'inset-x-0 bottom-0 h-auto border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom', className), ...props, children: [children, _jsxs(SheetPrimitive.Close, { className: "absolute top-4 right-4 rounded-xs opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:ring-2 focus:ring-ring focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none data-[state=open]:bg-secondary", children: [_jsx(MdClose, { className: "size-4" }), _jsx("span", { className: "sr-only", children: "Close" })] })] })] })); } function SheetHeader({ className, ...props }) { return (_jsx("div", { "data-slot": "sheet-header", className: cn('flex flex-col gap-1.5 p-4', className), ...props })); } function SheetFooter({ className, ...props }) { return (_jsx("div", { "data-slot": "sheet-footer", className: cn('mt-auto flex flex-col gap-2 p-4', className), ...props })); } function SheetTitle({ className, ...props }) { return (_jsx(SheetPrimitive.Title, { "data-slot": "sheet-title", className: cn('font-semibold text-foreground', className), ...props })); } function SheetDescription({ className, ...props }) { return (_jsx(SheetPrimitive.Description, { "data-slot": "sheet-description", className: cn('text-sm text-muted-foreground', className), ...props })); } export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, }; //# sourceMappingURL=sheet.js.map