@llamaindex/ui
Version:
A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications
132 lines (129 loc) • 4.56 kB
JavaScript
import { cn } from './chunk-MG2ARK3A.mjs';
import { __objRest, __spreadValues, __spreadProps } from './chunk-FWCSY2DS.mjs';
import * as DialogPrimitive from '@radix-ui/react-dialog';
import { XIcon } from 'lucide-react';
import { jsx, jsxs } from 'react/jsx-runtime';
function Dialog(_a) {
var props = __objRest(_a, []);
return /* @__PURE__ */ jsx(DialogPrimitive.Root, __spreadValues({ "data-slot": "dialog" }, props));
}
function DialogTrigger(_a) {
var props = __objRest(_a, []);
return /* @__PURE__ */ jsx(DialogPrimitive.Trigger, __spreadValues({ "data-slot": "dialog-trigger" }, props));
}
function DialogPortal(_a) {
var props = __objRest(_a, []);
return /* @__PURE__ */ jsx(DialogPrimitive.Portal, __spreadValues({ "data-slot": "dialog-portal" }, props));
}
function DialogClose(_a) {
var props = __objRest(_a, []);
return /* @__PURE__ */ jsx(DialogPrimitive.Close, __spreadValues({ "data-slot": "dialog-close" }, props));
}
function DialogOverlay(_a) {
var _b = _a, {
className
} = _b, props = __objRest(_b, [
"className"
]);
return /* @__PURE__ */ jsx(
DialogPrimitive.Overlay,
__spreadValues({
"data-slot": "dialog-overlay",
className: cn(
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50",
className
)
}, props)
);
}
function DialogContent(_a) {
var _b = _a, {
className,
children,
showCloseButton = true
} = _b, props = __objRest(_b, [
"className",
"children",
"showCloseButton"
]);
return /* @__PURE__ */ jsxs(DialogPortal, { "data-slot": "dialog-portal", children: [
/* @__PURE__ */ jsx(DialogOverlay, {}),
/* @__PURE__ */ jsxs(
DialogPrimitive.Content,
__spreadProps(__spreadValues({
"data-slot": "dialog-content",
className: cn(
"bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
className
)
}, props), {
children: [
children,
showCloseButton && /* @__PURE__ */ jsxs(
DialogPrimitive.Close,
{
"data-slot": "dialog-close",
className: "ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
children: [
/* @__PURE__ */ jsx(XIcon, {}),
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "Close" })
]
}
)
]
})
)
] });
}
function DialogHeader(_a) {
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
return /* @__PURE__ */ jsx(
"div",
__spreadValues({
"data-slot": "dialog-header",
className: cn("flex flex-col gap-2 text-center sm:text-left", className)
}, props)
);
}
function DialogFooter(_a) {
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
return /* @__PURE__ */ jsx(
"div",
__spreadValues({
"data-slot": "dialog-footer",
className: cn(
"flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",
className
)
}, props)
);
}
function DialogTitle(_a) {
var _b = _a, {
className
} = _b, props = __objRest(_b, [
"className"
]);
return /* @__PURE__ */ jsx(
DialogPrimitive.Title,
__spreadValues({
"data-slot": "dialog-title",
className: cn("text-lg leading-none font-semibold", className)
}, props)
);
}
function DialogDescription(_a) {
var _b = _a, {
className
} = _b, props = __objRest(_b, [
"className"
]);
return /* @__PURE__ */ jsx(
DialogPrimitive.Description,
__spreadValues({
"data-slot": "dialog-description",
className: cn("text-muted-foreground text-sm", className)
}, props)
);
}
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger };