pxengine 0.1.36 → 0.1.37

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 CHANGED
@@ -37595,7 +37595,7 @@ var MultiAgentCard = ({
37595
37595
  "div",
37596
37596
  {
37597
37597
  className: cn(
37598
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37598
+ "text-foreground hover:bg-muted/50 hover:text-foreground my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden shadow-sm",
37599
37599
  className
37600
37600
  ),
37601
37601
  children: [
@@ -37675,7 +37675,7 @@ var MultiAgentPlan = ({
37675
37675
  "div",
37676
37676
  {
37677
37677
  className: cn(
37678
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37678
+ "text-foreground hover:bg-muted/50 hover:text-foreground my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden shadow-sm",
37679
37679
  className
37680
37680
  ),
37681
37681
  children: [
@@ -37777,7 +37777,7 @@ var MultiAgentUISelector = ({
37777
37777
  "div",
37778
37778
  {
37779
37779
  className: cn(
37780
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37780
+ "text-foreground hover:bg-muted/50 hover:text-foreground my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden shadow-sm",
37781
37781
  className
37782
37782
  ),
37783
37783
  children: [
@@ -37834,7 +37834,7 @@ var MultiAgentUISelector = ({
37834
37834
  onClick: () => toggleComponent(activeStageId, comp.name),
37835
37835
  disabled: submitted,
37836
37836
  className: cn(
37837
- "text-left p-2.5 rounded-lg border text-[11px] transition-all",
37837
+ "text-left p-2.5 rounded-lg border text-[11px] transition-all overflow-hidden",
37838
37838
  isSelected ? "border-[var(--primary-color)] bg-[var(--primary-color)]/5" : "border-[var(--border-color)] hover:border-[var(--primary-color)]/50",
37839
37839
  submitted && "opacity-60 cursor-default"
37840
37840
  ),
@@ -37863,7 +37863,7 @@ var MultiAgentUISelector = ({
37863
37863
  ),
37864
37864
  /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("span", { className: "font-medium text-[var(--foreground)]", children: comp.display_name })
37865
37865
  ] }),
37866
- /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("p", { className: "text-[10px] text-[var(--foreground)]/40 mt-0.5 ml-5", children: comp.description })
37866
+ /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("p", { className: "text-[10px] text-[var(--foreground)]/40 mt-0.5 ml-5 whitespace-normal", children: comp.description })
37867
37867
  ]
37868
37868
  },
37869
37869
  comp.name
@@ -37879,7 +37879,7 @@ var MultiAgentUISelector = ({
37879
37879
  children: "Continue"
37880
37880
  }
37881
37881
  ) }),
37882
- submitted && /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5", children: "Selections confirmed" }) })
37882
+ submitted && /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("div", { className: "px-4 pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5 ", children: "Selections confirmed" }) })
37883
37883
  ]
37884
37884
  }
37885
37885
  );
@@ -39830,6 +39830,7 @@ var PXEngineRenderer = ({
39830
39830
  console.warn(
39831
39831
  `[PXEngineRenderer] Component not found: ${componentName}`
39832
39832
  );
39833
+ return null;
39833
39834
  }
39834
39835
  }
39835
39836
  const resolvedNormalized = resolvedIdentifier.charAt(0).toUpperCase() + resolvedIdentifier.slice(1);