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.mjs CHANGED
@@ -37315,7 +37315,7 @@ var MultiAgentCard = ({
37315
37315
  "div",
37316
37316
  {
37317
37317
  className: cn(
37318
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37318
+ "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",
37319
37319
  className
37320
37320
  ),
37321
37321
  children: [
@@ -37395,7 +37395,7 @@ var MultiAgentPlan = ({
37395
37395
  "div",
37396
37396
  {
37397
37397
  className: cn(
37398
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37398
+ "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",
37399
37399
  className
37400
37400
  ),
37401
37401
  children: [
@@ -37497,7 +37497,7 @@ var MultiAgentUISelector = ({
37497
37497
  "div",
37498
37498
  {
37499
37499
  className: cn(
37500
- "my-3 rounded-xl border border-[var(--border-color)] bg-[var(--card-background)] overflow-hidden",
37500
+ "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",
37501
37501
  className
37502
37502
  ),
37503
37503
  children: [
@@ -37554,7 +37554,7 @@ var MultiAgentUISelector = ({
37554
37554
  onClick: () => toggleComponent(activeStageId, comp.name),
37555
37555
  disabled: submitted,
37556
37556
  className: cn(
37557
- "text-left p-2.5 rounded-lg border text-[11px] transition-all",
37557
+ "text-left p-2.5 rounded-lg border text-[11px] transition-all overflow-hidden",
37558
37558
  isSelected ? "border-[var(--primary-color)] bg-[var(--primary-color)]/5" : "border-[var(--border-color)] hover:border-[var(--primary-color)]/50",
37559
37559
  submitted && "opacity-60 cursor-default"
37560
37560
  ),
@@ -37583,7 +37583,7 @@ var MultiAgentUISelector = ({
37583
37583
  ),
37584
37584
  /* @__PURE__ */ jsx130("span", { className: "font-medium text-[var(--foreground)]", children: comp.display_name })
37585
37585
  ] }),
37586
- /* @__PURE__ */ jsx130("p", { className: "text-[10px] text-[var(--foreground)]/40 mt-0.5 ml-5", children: comp.description })
37586
+ /* @__PURE__ */ jsx130("p", { className: "text-[10px] text-[var(--foreground)]/40 mt-0.5 ml-5 whitespace-normal", children: comp.description })
37587
37587
  ]
37588
37588
  },
37589
37589
  comp.name
@@ -37599,7 +37599,7 @@ var MultiAgentUISelector = ({
37599
37599
  children: "Continue"
37600
37600
  }
37601
37601
  ) }),
37602
- submitted && /* @__PURE__ */ jsx130("div", { className: "px-4 pb-3", children: /* @__PURE__ */ jsx130("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5", children: "Selections confirmed" }) })
37602
+ submitted && /* @__PURE__ */ jsx130("div", { className: "px-4 pb-3", children: /* @__PURE__ */ jsx130("div", { className: "text-[10px] text-emerald-600 font-medium text-center py-1.5 ", children: "Selections confirmed" }) })
37603
37603
  ]
37604
37604
  }
37605
37605
  );
@@ -39550,6 +39550,7 @@ var PXEngineRenderer = ({
39550
39550
  console.warn(
39551
39551
  `[PXEngineRenderer] Component not found: ${componentName}`
39552
39552
  );
39553
+ return null;
39553
39554
  }
39554
39555
  }
39555
39556
  const resolvedNormalized = resolvedIdentifier.charAt(0).toUpperCase() + resolvedIdentifier.slice(1);