pxengine 0.1.133 → 0.1.134

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
@@ -16515,7 +16515,7 @@ var FullscreenModal = ({ url, title, slideCount, initialSlide = 1, onClose }) =>
16515
16515
  newSlide = currentSlide <= 1 ? totalSlides : currentSlide - 1;
16516
16516
  }
16517
16517
  setCurrentSlide(newSlide);
16518
- iframe.contentWindow.postMessage({ type: command }, "*");
16518
+ iframe.contentWindow.postMessage({ type: "goToSlide", slide: newSlide }, "*");
16519
16519
  };
16520
16520
  return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("div", { className: "fixed inset-0 z-50 bg-black flex flex-col", children: [
16521
16521
  /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("div", { className: "flex items-center justify-between gap-4 px-4 h-11 bg-zinc-950/90 border-b border-zinc-800/60 flex-shrink-0", children: [
@@ -16728,7 +16728,7 @@ var PresentationJobCard = ({
16728
16728
  newSlide = currentSlide <= 1 ? totalSlides : currentSlide - 1;
16729
16729
  }
16730
16730
  setCurrentSlide(newSlide);
16731
- iframe.contentWindow.postMessage({ type: command }, "*");
16731
+ iframe.contentWindow.postMessage({ type: "goToSlide", slide: newSlide }, "*");
16732
16732
  };
16733
16733
  const isTerminal = status === "complete" || status === "failed";
16734
16734
  const building = Boolean(outlineWritePollUrl) || approvingOutline;