UNPKG

@llamaindex/ui

Version:

A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications

163 lines (157 loc) 6.04 kB
'use strict'; var chunkHK7TFVDA_js = require('./chunk-HK7TFVDA.js'); var chunkORMEWXMH_js = require('./chunk-ORMEWXMH.js'); var DialogPrimitive = require('@radix-ui/react-dialog'); var lucideReact = require('lucide-react'); var jsxRuntime = require('react/jsx-runtime'); function _interopNamespace(e) { if (e && e.__esModule) return e; var n = Object.create(null); if (e) { Object.keys(e).forEach(function (k) { if (k !== 'default') { var d = Object.getOwnPropertyDescriptor(e, k); Object.defineProperty(n, k, d.get ? d : { enumerable: true, get: function () { return e[k]; } }); } }); } n.default = e; return Object.freeze(n); } var DialogPrimitive__namespace = /*#__PURE__*/_interopNamespace(DialogPrimitive); function Dialog(_a) { var props = chunkORMEWXMH_js.__objRest(_a, []); return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Root, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog" }, props)); } function DialogTrigger(_a) { var props = chunkORMEWXMH_js.__objRest(_a, []); return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Trigger, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-trigger" }, props)); } function DialogPortal(_a) { var props = chunkORMEWXMH_js.__objRest(_a, []); return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Portal, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-portal" }, props)); } function DialogClose(_a) { var props = chunkORMEWXMH_js.__objRest(_a, []); return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Close, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-close" }, props)); } function DialogOverlay(_a) { var _b = _a, { className } = _b, props = chunkORMEWXMH_js.__objRest(_b, [ "className" ]); return /* @__PURE__ */ jsxRuntime.jsx( DialogPrimitive__namespace.Overlay, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-overlay", className: chunkHK7TFVDA_js.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 = chunkORMEWXMH_js.__objRest(_b, [ "className", "children", "showCloseButton" ]); return /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { "data-slot": "dialog-portal", children: [ /* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}), /* @__PURE__ */ jsxRuntime.jsxs( DialogPrimitive__namespace.Content, chunkORMEWXMH_js.__spreadProps(chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-content", className: chunkHK7TFVDA_js.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__ */ jsxRuntime.jsxs( DialogPrimitive__namespace.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__ */ jsxRuntime.jsx(lucideReact.XIcon, {}), /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Close" }) ] } ) ] }) ) ] }); } function DialogHeader(_a) { var _b = _a, { className } = _b, props = chunkORMEWXMH_js.__objRest(_b, ["className"]); return /* @__PURE__ */ jsxRuntime.jsx( "div", chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-header", className: chunkHK7TFVDA_js.cn("flex flex-col gap-2 text-center sm:text-left", className) }, props) ); } function DialogFooter(_a) { var _b = _a, { className } = _b, props = chunkORMEWXMH_js.__objRest(_b, ["className"]); return /* @__PURE__ */ jsxRuntime.jsx( "div", chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-footer", className: chunkHK7TFVDA_js.cn( "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", className ) }, props) ); } function DialogTitle(_a) { var _b = _a, { className } = _b, props = chunkORMEWXMH_js.__objRest(_b, [ "className" ]); return /* @__PURE__ */ jsxRuntime.jsx( DialogPrimitive__namespace.Title, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-title", className: chunkHK7TFVDA_js.cn("text-lg leading-none font-semibold", className) }, props) ); } function DialogDescription(_a) { var _b = _a, { className } = _b, props = chunkORMEWXMH_js.__objRest(_b, [ "className" ]); return /* @__PURE__ */ jsxRuntime.jsx( DialogPrimitive__namespace.Description, chunkORMEWXMH_js.__spreadValues({ "data-slot": "dialog-description", className: chunkHK7TFVDA_js.cn("text-muted-foreground text-sm", className) }, props) ); } exports.Dialog = Dialog; exports.DialogClose = DialogClose; exports.DialogContent = DialogContent; exports.DialogDescription = DialogDescription; exports.DialogFooter = DialogFooter; exports.DialogHeader = DialogHeader; exports.DialogOverlay = DialogOverlay; exports.DialogPortal = DialogPortal; exports.DialogTitle = DialogTitle; exports.DialogTrigger = DialogTrigger;