pxengine 0.1.84 → 0.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +7 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -39353,7 +39353,7 @@ var PresentationJobCard = ({
|
|
|
39353
39353
|
const hasHtml = Boolean(formats.html_url);
|
|
39354
39354
|
return /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(import_jsx_runtime147.Fragment, { children: [
|
|
39355
39355
|
/* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: cn("w-full", className), children: /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "bg-zinc-900 border border-zinc-800 rounded-2xl overflow-hidden", children: [
|
|
39356
|
-
/* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "h-[3px]
|
|
39356
|
+
/* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "h-[3px]", style: { background: "linear-gradient(90deg, #8B7D5E, #C0AE82, #DCC99B)" } }),
|
|
39357
39357
|
/* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "p-5", children: [
|
|
39358
39358
|
/* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "flex items-start gap-3", children: [
|
|
39359
39359
|
/* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "w-10 h-10 rounded-xl bg-indigo-500/10 border border-indigo-500/20 flex items-center justify-center flex-shrink-0 text-indigo-400", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(SlidesIcon, {}) }),
|
|
@@ -39582,7 +39582,8 @@ var ResearchReportJobCard = ({
|
|
|
39582
39582
|
authToken,
|
|
39583
39583
|
className,
|
|
39584
39584
|
onComplete,
|
|
39585
|
-
onFailed
|
|
39585
|
+
onFailed,
|
|
39586
|
+
compact = false
|
|
39586
39587
|
}) => {
|
|
39587
39588
|
const [status, setStatus] = (0, import_react76.useState)(initialStatus);
|
|
39588
39589
|
const [title, setTitle] = (0, import_react76.useState)(initialTitle);
|
|
@@ -39757,7 +39758,7 @@ var ResearchReportJobCard = ({
|
|
|
39757
39758
|
{
|
|
39758
39759
|
className: "h-[3px]",
|
|
39759
39760
|
style: {
|
|
39760
|
-
background:
|
|
39761
|
+
background: "linear-gradient(90deg, #8B7D5E, #C0AE82, #DCC99B)"
|
|
39761
39762
|
}
|
|
39762
39763
|
}
|
|
39763
39764
|
),
|
|
@@ -39817,7 +39818,7 @@ var ResearchReportJobCard = ({
|
|
|
39817
39818
|
)
|
|
39818
39819
|
] })
|
|
39819
39820
|
] }),
|
|
39820
|
-
hasHTML && /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "mt-4", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsxs)(
|
|
39821
|
+
hasHTML && !compact && /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "mt-4", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsxs)(
|
|
39821
39822
|
"div",
|
|
39822
39823
|
{
|
|
39823
39824
|
ref: previewRef,
|
|
@@ -39850,7 +39851,7 @@ var ResearchReportJobCard = ({
|
|
|
39850
39851
|
]
|
|
39851
39852
|
}
|
|
39852
39853
|
) }),
|
|
39853
|
-
!hasHTML && summary && /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "mt-4 pt-4 border-t border-zinc-800/60", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("p", { className: "text-sm text-zinc-400 leading-relaxed line-clamp-3", children: summary }) })
|
|
39854
|
+
!hasHTML && !compact && summary && /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "mt-4 pt-4 border-t border-zinc-800/60", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("p", { className: "text-sm text-zinc-400 leading-relaxed line-clamp-3", children: summary }) })
|
|
39854
39855
|
] })
|
|
39855
39856
|
] }) }),
|
|
39856
39857
|
showPreview && hasHTML && /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|